import java.io.*;
public class Main {
public static void main(String[] args)
{
File f= new File("C:\\Users\\HP\\Desktop\\LC.txt");
try
{
if(f.createNewFile())
{
System.out.println("file created");
}
else
{
System.out.println("file already created");
}
}
catch(IOException a)
{
System.out.println("Exception handled");
}
}
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter