Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 microsoft azure 网站。当我尝试在本地主机中使用以下代码时,我已将文件保存在 wwwroot 目录之外的 FTP 托管中(出于安全问题),它工作正常 *但是当我将代码上传到 azure 服务器时,结果是:“d:\窗口\数据" *
我获取目录的方法是:
string path = System.IO.Path.GetFullPath("../data/");
如何使用Azure网站找到完整路径?(再次 - 它在本地主机中工作)
我认为您可以使用它Sever.MapPath("../data/")来获取物理路径。
Sever.MapPath("../data/")