如何在C#中指定非精确路径

时间:2011-06-03 20:11:27

标签: c# .net windows

我目前的声明如下:

string dir = "C:\\Users\\Limited\\Desktop\\";

虽然我希望将它指定为work directroy中的目录,例如

workingpath / MyFolder文件

可以这样做吗?

4 个答案:

答案 0 :(得分:4)

我假设您可以使用相对路径,即"myfolder",但您可以获取并使用应用程序路径并附加子目录:

string appPath = Path.GetDirectoryName(Application.ExecutablePath);

http://www.csharp-examples.net/get-application-directory/

答案 1 :(得分:1)

只需使用应用程序的相对路径即可。

答案 2 :(得分:0)

除非您的路径以(驱动器号或后退)斜杠¹开头,否则它将被解释为相对于当前工作目录。所以"myfolder\\"将是一个相对目录。

¹在MS-DOS中,由cmd.exe模拟,可以在另一个驱动器上有一个相对于当前目录的路径。

答案 3 :(得分:0)

const string subDir = "test_dir";
string appPath = Path.GetDirectoryName(Application.ExecutablePath);
string targetPath = Path.Combine(appPath, subDir);