c 設定資料夾屬性

2021-06-12 16:19:29 字數 794 閱讀 8573

private void button1_click(object sender, system.eventargs e)

}private void button2_click(object sender, system.eventargs e)

if(myfiletype.lastindexof("archive")!=-1)

}private void button3_click(object sender, system.eventargs e)

myattributes=file.getattributes(this.textbox1.text);

if(this.checkbox4.checked==true)

//設定資料夾建立時間

directory.setcreationtime(this.textbox1.text,this.datetimepicker1.value);

//設定資料夾最近被修改時間

directory.setlastwritetime(this.textbox1.text,this.datetimepicker2.value);

//設定資料夾最近被訪問時間

directory.setlastaccesstime(this.textbox1.text,this.datetimepicker3.value);

messagebox.show("設定資料夾屬性操作成功!","資訊提示",messageboxbuttons.ok,messageboxicon.information);

}

設定資料夾訪問許可權,非資料夾屬性

using system using system.collections.generic using system.componentmodel using system.data using system.drawing using system.linq using system.text u...

不改變檔案 夾 屬性備份檔案 夾

1.tar 壓縮 root admin test ls all drwxr xr x 2 admin root 4096 jan 21 03 50 test root admin test tar czf test.tar.gz test root admin test ls all drwxr x...

c 遍歷資料夾深度 C 遍歷資料夾獲取資料夾大小

c 遍歷資料夾獲取資料夾大小 都需要引入system.io這個命名空間 第一種方法 public static long getdirectorylength string dirpath 判斷給定的路徑是否存在,如果不存在則退出 if directory.exists dirpath return...