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")
しかし、それはfalseを返します。プログラム内のディレクトリへのパスを取得して、ファイルを書き込んで後で取得できるようにするにはどうすればよいですか?
これはasp.netにあり、winformsではありません
ASP.NETローカルパスを取得しようとしている場合は、を使用Server.MapPath("~/EmailAttachments/TestReport.pdf")して完全修飾パスを取得します。
Server.MapPath("~/EmailAttachments/TestReport.pdf")