-1
創建的目錄,所以我的問題是,我想有我目錄循環是這樣的: https://gyazo.com/74209ec6e199adc3cd84460f7e0d5c2e爪哇 - 循環由數量
我的代碼創建顯示目錄的:
public static File createDir(String path, String name) {
File dir = new File(path + "\\" + name);
dir.mkdir();
return dir;
}
public static void createDirs(String path, int times) {
int x;
for(x=1; x < times+1; x++){
Utils.createDir(path+File.separator, Integer.toString(x));
}
}
public static void main(String[] args){
Utils.createDir(System.getProperties().getProperty("user.home")+File.separator+"Desktop", "Dir");
createDirs(System.getProperties().getProperty("user.home")+File.separator+"Desktop"+File.separator+"Dir", 10);
}
}
但我不知道如何製作它。任何幫助表示讚賞。
編輯:現在看起來是這樣的權利: https://gyazo.com/e4877b87c6d9e1910bad7849daafd431
謝謝,它對我很好。 –