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.
我正在尝试获取我的项目中名为 EmailAttachments 的文件夹的路径。我试过了
File.Exists("~/EmailAttachments/TestReport.pdf")
但这返回错误。如何获取程序中目录的路径,以便将文件写入其中并稍后检索它们?
这是在 asp.net 中,而不是 winforms
如果您尝试获取 ASP.NET 本地路径,请使用Server.MapPath("~/EmailAttachments/TestReport.pdf")获取其完全限定路径。
Server.MapPath("~/EmailAttachments/TestReport.pdf")