我这里包含文件夹的文件不能一步创建完
File file3 =new File("E:\\hello.text\\a.text");
这一句要分成两步才能创建出来,而且不是文件,而是一个文件夹。
第一步File file3 =new File("E:\\hello.text");
有了hello.text
File file3 =new File("E:\\hello.text\\a.text");
File file3 =new File("E:\\hello.text\\a.text");
这一句要分成两步才能创建出来,而且不是文件,而是一个文件夹。
第一步File file3 =new File("E:\\hello.text");
有了hello.text
File file3 =new File("E:\\hello.text\\a.text");
2016-06-23
举报