为Request.AppRelativeCurrentExecutionFilePath设置的路径在哪里

时间:2008-12-15 06:59:53

标签: asp.net

我需要知道Request.AppRelativeCurrentExecutionFilePath的路径。当我检索任何请求时,它会给出错误的文件路径。

1 个答案:

答案 0 :(得分:0)

它获取应用程序根目录的虚拟路径,并通过对应用程序根目录使用波浪号(〜)表示法使其相对。

所以如果您的应用程序托管在http://localhost/WebApp1并且您想要访问根目录中的Picture1.jpg,那么使用它将返回〜/ Picture1.jpg

string _directoryName = Request.AppRelativeCurrentExecutionFilePath +“Picture1.jpg”将返回http://localhost/WebApp1/Picture1.jpg