18
C # 사용자에게 폴더에 대한 쓰기 권한이 있는지 테스트
실제로 시도하기 전에 사용자가 폴더에 쓸 수 있는지 테스트해야합니다. Directory.GetAccessControl () 메서드를 사용하여 폴더에 대한 보안 권한을 검색하려고 시도하는 다음 메서드 (C # 2.0)를 구현했습니다 . private bool hasWriteAccessToFolder(string folderPath) { try { // Attempt to get a list of security permissions from the folder. // This will raise an …
187
c#
permissions
directory