清除Windows移动的6专业版中的只读标志

zd287kbt  于 2022-11-18  发布在  Windows
关注(0)|答案(1)|浏览(151)

我正在使用WM 6+的应用程序,并尝试覆盖现有文件:

File.Copy(src, dest, true);

但我得到这个错误:

System.UnauthorizedAccessException: UnauthorizedAccessException
at System.IO.__Error.WinIOError()
at System.IO.File.InternalCopy()
at System.IO.File.Copy()

因此,我尝试更改目标文件上的文件属性,以便能够覆盖它:

System.IO.File.SetAttributes(dest, FileAttributes.Normal);

但是当我尝试编译时,我得到了这样的结果:

Error   1   'System.IO.File' does not contain a definition for 'SetAttributes'  L:\Admin\Applications_Source_Code\CommonTime_AEP_Config_Source\AEP_WM6 - Production Code\AEP_WM6\Form1.cs   133 26  AEP_WM6

为什么SetAttributes不存在?!
这是我试图覆盖的文件(不是系统文件,只是在路径相关的情况下显示):

@"\Program Files\Common Files\Trimble\GeoData\PFToolkit.csw"

这似乎已经做到了技巧(感谢TheGreatCO的评论)指向我这里:Remove readonly in Compact Framework

FileInfo fileInfo = new FileInfo(dest); 
FileAttributes attributes = fileInfo.Attributes; if ((attributes & FileAttributes.ReadOnly) == FileAttributes.ReadOnly) 
{ 
    // set the attributes to nonreadonly 
    fileInfo.Attributes &= ~FileAttributes.ReadOnly; 
}
9w11ddsr

9w11ddsr1#

此问题的解决方案为使用OpenNETCF框架。

OpenNETCF.IO.FileHelper.SetAttributes("filePath is here", FileAttributes.Normal);

相关问题