import java.io.*;
public class createfile{
public static void main(String args[]) throws IOException{
File f=new File("javafile.txt");
if(f.exists())
{
f.createNewFile();
System.out.println("New file \"javafile.txt\"has been created to the current directory");
}
else
System.out.println("The specified file is already exist");
}
}
既存のファイル「javafile.txt」を作成しました。これにテキストを入力しました.javacをコンパイルする場合、次のコードでファイルを再作成する必要があることを願っています
if(f.exists())
{
f.createNewFile();
}
しかし、作成しませんでした..開くと、既存のファイルが開きます。なぜ?