我有一些这样的网络文件夹
\\193.167.11.14
\\SRV15
我正在尝试使用Directory.Exists
或File.Exists
,但它返回false
foreach (string filePath in ConfigurationManager.AppSettings)
{
if (Directory.Exists(filePath))
{
Console.WriteLine($" Y:{filePath}");
}
else
{
Console.WriteLine($" N:{filePath}");
}
}