欧美成人精品手机在线观看_69视频国产_动漫精品第一页_日韩中文字幕网 - 日本欧美一区二区

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發文檔 其他文檔  
 
網站管理員

在 C# 中設置文件權限

admin
2023年9月10日 11:50 本文熱度 526

【中文標題】在 C# 中設置文件權限【英文標題】:Set File Permissions in C#【發布時間】:2011-11-27 06:34:42【問題描述】:

我想在 C# 中將文件的權限設置為“無法刪除”,只能讀取。但我不知道該怎么做。你能幫幫我嗎?

【問題討論】:

【參考方案1】:

這是關于屬性(參見 jb.'s answer)或權限,即讀/寫訪問權限等嗎?在后一種情況下,請參閱File.SetAccessControl。

來自 MSDN:

// Get a FileSecurity object that represents the
// current security settings.
FileSecurity fSecurity = File.GetAccessControl(fileName);
// Add the FileSystemAccessRule to the security settings.
fSecurity.AddAccessRule(new FileSystemAccessRule(account, rights, controlType));
// Set the new access settings.
File.SetAccessControl(fileName, fSecurity);

請參閱How to grant full permission to a file created by my application for ALL users? 了解更具體的示例。

在最初的問題中,聽起來您想禁止FileSystemRights.delete 對。

【討論】:

代碼也在這個MSDN 上面的鏈接(File.AccessControl)是德語版本。對于回答“Nein”的人,英文版的地址為docs.microsoft.com/en-us/dotnet/api/…。到 Sprichst du Deutsch'【參考方案2】:

看看File.SetAttributes()。網上有很多關于如何使用的例子。

取自該 MSDN 頁面:

FileAttributes attributes = File.GetAttributes(path);
        if ((attributes & FileAttributes.Hidden) == FileAttributes.Hidden)
        
            // Show the file.
            attributes = RemoveAttribute(attributes, FileAttributes.Hidden);
            File.SetAttributes(path, attributes);
            Console.WriteLine("The 0 file is no longer hidden.", path);
         
        else 
        
            // Hide the file.
            File.SetAttributes(path, File.GetAttributes(path) | FileAttributes.Hidden);
            Console.WriteLine("The 0 file is now hidden.", path);

【討論】:

我認為問題是關于“權限”而不是“屬性”...【參考方案3】:

你忘記在RemoveAttribute方法中復制了,就是:

    private static FileAttributes RemoveAttribute(FileAttributes attributes, FileAttributes attributesToRemove)
    
        return attributes & ~attributesToRemove;

【討論】:

以上是關于在 C# 中設置文件權限的主要內容,如果未能解決你的問題,請參考以下文章

在Winform程序中設置管理員權限及為用戶組添加寫入權限

在Winform程序中設置管理員權限及為用戶組添加寫入權限

在Winform程序中設置管理員權限及為用戶組添加寫入權限

在android中設置文件讀取權限

如何在 Windows 中設置文件夾權限?

在 Android 應用程序的文件中設置可執行權限


該文章在 2023/9/10 11:50:50 編輯過
關鍵字查詢
相關文章
正在查詢...
點晴ERP是一款針對中小制造業的專業生產管理軟件系統,系統成熟度和易用性得到了國內大量中小企業的青睞。
點晴PMS碼頭管理系統主要針對港口碼頭集裝箱與散貨日常運作、調度、堆場、車隊、財務費用、相關報表等業務管理,結合碼頭的業務特點,圍繞調度、堆場作業而開發的。集技術的先進性、管理的有效性于一體,是物流碼頭及其他港口類企業的高效ERP管理信息系統。
點晴WMS倉儲管理系統提供了貨物產品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質期管理,貨位管理,庫位管理,生產管理,WMS管理系統,標簽打印,條形碼,二維碼管理,批號管理軟件。
點晴免費OA是一款軟件和通用服務都免費,不限功能、不限時間、不限用戶的免費OA協同辦公管理系統。
Copyright 2010-2025 ClickSun All Rights Reserved