问题描述
- 《求助》,c#如何去除文件夹的只读属性
-
如题,是文件夹的,我试了很长时间的
directory.attributes =fileattributes.normal
没效果
解决方案
///
/// 去除文件夹只读属性
///
/// 文件夹物理路径
public static bool SetDirAttrNormal(string strPath)
{
bool success = true;
try
{
string[] strFiles = Directo......
答案就在这里:C#去除文件夹只读属性
时间: 2024-11-10 11:49:40