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.
我想将文件 .zip、.rar 等上传到服务器。我将这些文件保存到 xampp 服务器中的“文件”文件夹中。但是,我怎样才能给 asp.net 写权限,以便它可以将选定的文件保存在“文件”文件夹中。
string filename = Path.GetFileName(FileUpload1.PostedFile.FileName); FileUpload1.SaveAs(Server.MapPath("~/Files/" + filename));
检查网站的应用程序池正在使用的身份(用户)(在 IIS 管理器中)。
确保用户对该文件夹具有写入权限。