1. 程式人生 > >Io流,檔案/資料夾的建立

Io流,檔案/資料夾的建立

import java.io.File;
import java.io.IOException;

public class Demo01 {
public static void main(String[] args) throws IOException {
// 建立資料夾或者檔案時下例都可使用!
// File file = new File(”f://a/aa.txt”);
// File file = new File(“f://a/”,”aa.txt”);
// File file1 =new File(“f://a/”);
// FIle file = new File(file1,”aa.txt”);
// 建立絕對路徑
File file = new File(“f://”, “aaa”);
// 建立file 相當於下例 先建立f1,再在f1 目錄下建立f2;
// File f1 = new File(“f://”);
// File f2 = new File(f1,”aaa”);
// getAbsolutePath 獲取檔案的絕對路徑
System.out.println(file.getAbsolutePath());
// getPath 獲取檔案的相對路徑
System.out.println(file.getPath());
// getName 獲取檔名稱
System.out.println(file.getName());
// getParent 獲取上一級目錄
System.out.println(file.getParent());
// toString 檔案路徑以文字形式輸出
System.out.println(file.toString());
// exists 判斷資料夾是否存在,返回值為boolean
System.out.println(file.exists());
// createNewFile 建立含字尾名的檔案,返回值為Boolean
System.out.println(file.createNewFile());
// mkdir 建立資料夾,返回值為boolean,並且使用時資料夾的父目錄必須存在;
System.out.println(file.mkdir());
// mkdirs 建立資料夾,返回值為boolean;
System.out.println(file.mkdirs());

// 建立相對路徑
File file2 = new File(“aaa”);
System.out.println(file2.getAbsolutePath());
System.out.println(file2.getPath());
System.out.println(file2.getName());
// 相對路徑已經是在根目錄下,所以沒有上一級目錄;
System.out.println(file2.getParent());

}

}