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.
出于安全原因,我可以将文件放在C:托管我的网站的服务器的驱动器上吗?
C:
如果是,那么我如何设置和获取要在页面上使用的位置路径?
我们可以像这样在网站的根目录上获取文件:
licFileName = HttpContext.Current.Server.MapPath("~/LicenseFile/") + licFileName;
我可以设置C:服务器本地驱动器的路径并获取吗?如何?
阿提克
licFileName = @"c:\" + licFileName;
但是您需要对 C: 的访问权限,如果它不是您的服务器,则可能会出现问题。如果我是你,我不会那样做。
您似乎正试图阻止网络用户访问LicenseFile/. 相反,您应该阻止访问LicenseFile/使用您的 Web 服务器配置。
LicenseFile/