我在用户的本地硬盘上的文件夹中有一个文件。我想通过最后几个文件夹来引用它,我该怎么做?例如:
string filePath = \\folder\file.txt;
答案 0 :(得分:0)
使用" GetParent"
string path = Directory.GetCurrentDirectory(); //current path
string path1 = Directory.GetParent(path).ToString(); //parent of current path
string path2 = Directory.GetParent(path1).ToString(); //parent..
string path3 = Directory.GetParent(path2).ToString(); //parent..
如果您真的想要使用它,请进行优化。它只是展示了它是如何工作的。