c#的相对路径
时间: 2023-07-27 18:08:41 浏览: 95
c# 获取相对路径
在 C# 中,相对路径是相对于当前工作目录的路径。可以使用以下方法获取当前工作目录:
```
string currentDirectory = Environment.CurrentDirectory;
```
然后,可以在当前工作目录下指定相对路径来访问文件或文件夹。例如,如果当前工作目录是 "C:\Users\John",可以使用以下相对路径来访问 "Documents" 文件夹:
```
string relativePath = @"Documents\";
string fullPath = Path.Combine(currentDirectory, relativePath);
```
这将返回完整路径 "C:\Users\John\Documents\"。请注意,路径分隔符使用反斜杠而不是正斜杠。
阅读全文