mkdirs()方法是File類的一部分。 mkdirs()函數用於創建由抽象路徑名表示的新目錄以及該抽象路徑名的所有不存在的父目錄。如果mkdirs()函數無法創建某些目錄,則它可能已經創建了其某些父目錄。如果創建目錄,則該函數返回true,否則返回false。
函數簽名:
public boolean mkdirs()
用法:
file.mkdirs()
參數:此方法不接受任何參數。
返回值:該函數返回布爾數據類型。如果創建目錄,則該函數返回true,否則返回false。
異常:如果該方法不允許創建目錄,則此方法將引發SecurityException
下麵的程序將說明mkdirs()函數的用法:
範例1:嘗試在“f:”驅動器中創建一個名為program的新目錄。
// Java program to demonstrate
// the use of File.mkdirs() method
import java.io.*;
public class GFG {
public static void main(String args[])
{
// create an abstract pathname (File object)
File f = new File("F:\\program");
// check if the directory can be created
// using the abstract path name
if (f.mkdirs()) {
// display that the directory is created
// as the function returned true
System.out.println("Directory is created");
}
else {
// display that the directory cannot be created
// as the function returned false
System.out.println("Directory cannot be created");
}
}
}
輸出:
Directory is created
範例2:嘗試在“f:\program”目錄中創建一個名為program1的新目錄,但未創建程序目錄。如果目錄不存在,我們將測試函數mkdirs()是否可以創建抽象路徑名的父目錄。
// Java program to demonstrate
// the use of File.mkdirs() method
import java.io.*;
public class GFG {
public static void main(String args[])
{
// create an abstract pathname (File object)
File f = new File("F:\\program\\program1");
// check if the directory can be created
// using the abstract path name
if (f.mkdirs()) {
// display that the directory is created
// as the function returned true
System.out.println("Directory is created");
}
else {
// display that the directory cannot be created
// as the function returned false
System.out.println("Directory cannot be created");
}
}
}
輸出:
Directory is created
這些程序可能無法在在線IDE中運行。請使用離線IDE並設置文件的路徑
相關用法
- Java File isHidden()用法及代碼示例
- Java File getAbsolutePath()用法及代碼示例
- Java File length()用法及代碼示例
- Java File delete()用法及代碼示例
- Java File getName()用法及代碼示例
- Java File createTempFile()用法及代碼示例
- Java File getAbsoluteFile()用法及代碼示例
- Java File lastModified()用法及代碼示例
- Java File createNewFile()用法及代碼示例
- Java File getCanonicalPath()用法及代碼示例
- Java File isFile()用法及代碼示例
- Java File exists()用法及代碼示例
- Java File getFreeSpace()用法及代碼示例
- Java File setExecutable()用法及代碼示例
- Java File mkdir()用法及代碼示例
注:本文由純淨天空篩選整理自andrew1234大神的英文原創作品 File mkdirs() method in Java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。