Skip to content

Instantly share code, notes, and snippets.

@hibooboo2
Created February 3, 2014 23:16
Show Gist options
  • Save hibooboo2/8794389 to your computer and use it in GitHub Desktop.
Save hibooboo2/8794389 to your computer and use it in GitHub Desktop.
File logFile= new File(this.logFileName);
if (!logFile.exists())
{
try
{
logFile.createNewFile();
}
catch (IOException e)
{
System.out.println("IOExeception from writing to log. Can't access log file or make one.");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment