18
การทดสอบ C # หากผู้ใช้มีสิทธิ์การเขียนไปยังโฟลเดอร์
ฉันต้องทดสอบว่าผู้ใช้สามารถเขียนไปยังโฟลเดอร์ก่อนที่จะพยายามทำเช่นนั้นจริง ๆ ผมเคยนำมาใช้วิธีการดังต่อไปนี้ (ใน C # 2.0) ว่ามีความพยายามที่จะดึงสิทธิ์การรักษาความปลอดภัยสำหรับโฟลเดอร์โดยใช้Directory.GetAccessControl ()วิธีการ private bool hasWriteAccessToFolder(string folderPath) { try { // Attempt to get a list of security permissions from the folder. // This will raise an exception if the path is read only or do not have access to view the permissions. System.Security.AccessControl.DirectorySecurity …
187
c#
permissions
directory