在 .NET 中,Server.MapPath 方法用于将相对路径转换为绝对路径。它通常用于访问应用程序的根目录中的文件或文件夹。
以下是使用 Server.MapPath 方法的示例:
string rootPath = Server.MapPath("~");
string filePath = Server.MapPath("~/folder/file.txt");
在上述示例中,“~/folder/file.txt” 是相对于应用程序根目录的路径。Server.MapPath 方法将相对路径转换为绝对路径,并将其存储在 filePath 变量中。
需要注意的是,Server.MapPath 方法只能在 ASP.NET Web 应用程序中使用,而不能在其他类型的 .NET 应用程序中使用。