String machineName = System.Environment.MachineName;
String filePath = @"E:\folder1\folder2\file1";
int a = filePath.IndexOf(System.IO.Path.DirectorySeparatorChar);
filePath = filePath.Substring(filePath.IndexOf(System.IO.Path.DirectorySeparatorChar) +1);
String networdPath = System.IO.Path.Combine(string.Concat(System.IO.Path.DirectorySeparatorChar, System.IO.Path.DirectorySeparatorChar), machineName, filePath);
Console.WriteLine(networdPath);
我使用String.Concat
和Path.Combine
编写了上述代码以获取网络路径。但这只是一种解决方法,而不是具体的解决方案,可能会失败。
是否有获得网络路径的具体解决方案?
答案 0 :(得分:1)
您假设您的E:\folder1
本地路径被共享为\\mypc\folder1
,这通常不是真的,因此我怀疑是否存在执行您想要做的事情的一般方法。
您正在实施您想要实现的目标。您可以从System.IO.Path
获得更多帮助;根据输入
Path.GetPathRoot
的返回值
string GetNetworkPath(string path)
{
string root = Path.GetPathRoot(path);
// validate input, in your case you are expecting a path starting with a root of type "E:\"
// see Path.GetPathRoot on MSDN for returned values
if (string.IsNullOrWhiteSpace(root) || !root.Contains(":"))
{
// handle invalid input the way you prefer
// I would throw!
throw new ApplicationException("be gentle, pass to this function the expected kind of path!");
}
path = path.Remove(0, root.Length);
return Path.Combine(@"\\myPc", path);
}