我有一个存储在物理磁盘上的文件var path = file://Servername/SampleFiles/abc.docx
。现在,当我尝试将其添加到下面的代码
File.SetAttributes(path, FileAttributes.ReadOnly);
使用上面一行代码我得到URI file format is not supported
而如果我尝试添加var path = //Servername/SampleFiles/abc.docx
之类的路径,那么上面的行工作正常,但我在Internet Explorer上收到{{1}的提示}
请指导我删除IE提示,我不希望用户从IE中禁用它,因为这将是安全问题。