我正在尝试使用 DirectoryInfo 来验证是否存在 UNC 路径,但是当我可以在 Windows 资源管理器中确认它确实存在时,DirectoryInfo 一致性会失败并说该文件夹不存在。
例子
var storagepath = new DirectoryInfo(@"\\123.123.123.123\c$\testfolder\test1\");
if (storagepath.Exists)
{ }
有没有解决的办法?
我正在尝试使用 DirectoryInfo 来验证是否存在 UNC 路径,但是当我可以在 Windows 资源管理器中确认它确实存在时,DirectoryInfo 一致性会失败并说该文件夹不存在。
例子
var storagepath = new DirectoryInfo(@"\\123.123.123.123\c$\testfolder\test1\");
if (storagepath.Exists)
{ }
有没有解决的办法?