我想知道是否可以为文件的路径分配一个字符串变量?如果是,那么是否可以动态更新文件?我正在尝试动态创建文件(我可以这样做),但我想将这些动态创建的文件链接到字符串变量。请帮忙。提前致谢。
File dir = new File("Data");
if(!dir.exists()){
dir.mkdir();
}
String filename = "file1";
File tagfile = new File(dir, filename+".txt");
if(!tagfile.exists()){
tagfile.createNewFile();
}
System.out.println("Path : " +tagfile.getAbsolutePath());