0

我是 C# 的新手,如何设置项目文件的文件路径我已经尝试过这些,但它提供了默认的 Windows 文件路径,如何做到这一点?

  sfdlg.InitialDirectory = Application.StartupPath + @"..\..\";
    Application.StartupPath---> is my excutable file path. from this path to come back two `root folders` i use `@"..\..\"`

有没有办法回到两个根文件夹?

4

1 回答 1

1

您已经反转了路径规范 -..应该在路径的开头(假设没有驱动器名称)。

使用路径的一种安全方法是将它们与Path类一起使用:

Path.Combine(Path.Combine(Application.StartupPath, ".."), "..");

以上应该可以解决问题。

于 2012-11-16T11:45:06.733 回答