Skip to content

Instantly share code, notes, and snippets.

@hibooboo2
Created February 4, 2014 00:58
Show Gist options
  • Save hibooboo2/8795585 to your computer and use it in GitHub Desktop.
Save hibooboo2/8795585 to your computer and use it in GitHub Desktop.
Make a folder.
void makeFolder(String folderLocation)
{
File f= new File(folderLocation);
try
{
if (f.mkdir())
{
System.out.println("Directory Created");
}
else
{
System.out.println("Directory is not created");
}
}
catch (Exception e)
{
e.printStackTrace();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment