狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發(fā)文檔 其他文檔  
 
網(wǎng)站管理員

在 C# 中設(shè)置文件權(quán)限

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

【中文標(biāo)題】在 C# 中設(shè)置文件權(quán)限【英文標(biāo)題】:Set File Permissions in C#【發(fā)布時(shí)間】:2011-11-27 06:34:42【問題描述】:

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

【問題討論】:

【參考方案1】:

這是關(guān)于屬性(參見 jb.'s answer)或權(quán)限,即讀/寫訪問權(quán)限等嗎?在后一種情況下,請參閱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 對。

【討論】:

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

看看File.SetAttributes()。網(wǎng)上有很多關(guān)于如何使用的例子。

取自該 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);

【討論】:

我認(rèn)為問題是關(guān)于“權(quán)限”而不是“屬性”...【參考方案3】:

你忘記在RemoveAttribute方法中復(fù)制了,就是:

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

【討論】:

以上是關(guān)于在 C# 中設(shè)置文件權(quán)限的主要內(nèi)容,如果未能解決你的問題,請參考以下文章

在Winform程序中設(shè)置管理員權(quán)限及為用戶組添加寫入權(quán)限

在Winform程序中設(shè)置管理員權(quán)限及為用戶組添加寫入權(quán)限

在Winform程序中設(shè)置管理員權(quán)限及為用戶組添加寫入權(quán)限

在android中設(shè)置文件讀取權(quán)限

如何在 Windows 中設(shè)置文件夾權(quán)限?

在 Android 應(yīng)用程序的文件中設(shè)置可執(zhí)行權(quán)限


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