Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要访问网络文件夹
\\p3clfs\xyz\test.tiff
然后:
String image = @"\\p3clfs\xyz\test.tiff"; MyClass.OpenUrl(image)
错误:c:\inetpub\wwwroot\p3clfs\xyz\ 不存在!
如何在没有“c:\inetpub\wwwroot\”的情况下打开 URL?
如果您需要打开一个网络路径(因此,基于文件系统的东西)作为 URL,您的字符串需要是这样的:
String image = @"file://p3clfs/xyz/test.tiff";
实际上解决方案是在 IIS 中创建一个虚拟目录。