我正在尝试获取用户上传的文件的路径,但我得到的路径是错误的,因为路径应该是示例
"C:\\Users\\Tranga.Patel\\Downloads\template.xlsx"
但在我的程序中我得到
"c:\\windows\\system32\\inetsrv\\Template Final.xlsx"
我正在使用的代码是
fileName = Path.GetFullPath(fileUpload.PostedFile.FileName);
我也尝试过使用
fileName = Server.MapPath(Path.GetFullPath(fileUpload.PostedFile.FileName));
这给出了项目的目录