文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>C# Exception:Access to the path "" is denied.

C# Exception:Access to the path "" is denied.

时间:2011-05-06  来源:HWH....

I add my project into VSS, and then program fire a exception like this---"Access to the path '' is denied". I don't know how to deal with it,so i search the problem in MSDN. But get nothing that can solute it.

原因有:1.有其它的程序正在使用要被覆盖的文件;

    2.用户的权限不够;

    看了很多地方都只有这两个原因的描述。也说了一些解决方案,但都不能解决我的问题。

    通过半天的找原因才发现,其中有一个文件是Read-only所以不让override。所以再加一条。

    3.文件是只读的;

    可以使用,Code:

FileInfo fi = new FileInfo("C:\\test.txt");
fi.Attributes = fi.Attributes & ~FileAttributes.ReadOnly & ~FileAttributes.Hidden

对文件的属性进行修改之后再用

File.Copy("D:\\test.txt", "C:\\test.txt" , true);

这样就能解决了!

相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载