本帖最後由 tonyh 於 2020-2-15 14:09 編輯
建立資料路徑 C:/a/b/c/ 並在該路徑下建立一新檔案 test.txt
- import java.io.File;
- public class Ch01 {
- public static void main(String[] args) {
- File f=new File("C:/a/b/c/test.txt");
- f.getParentFile().mkdirs();
- try {
- f.createNewFile();
- } catch (Exception e) {}
- System.out.println(f.getParentFile());
- System.out.println(f.getAbsolutePath());
- }
- }
複製代碼 |