相对路径是相对于当前工作目录或当前文件所在目录的路径,可以使用以下方法来使用相对路径:
Directory.GetCurrentDirectory()
方法获取当前工作目录的路径。string currentDirectory = Directory.GetCurrentDirectory();
Path.Combine()
方法将相对路径和当前目录路径组合成完整的路径。string relativePath = "folder/file.txt";
string fullPath = Path.Combine(currentDirectory, relativePath);
File.ReadAllText()
等方法读取文件内容。string content = File.ReadAllText(fullPath);
通过以上方法,就可以使用相对路径来访问文件或目录。