我正在尝试将文件从 C 驱动器上的某个位置复制到映射的网络驱动器 (Z),即 \address\content\
但是我收到以下错误消息:
System.UnauthorizedAccessException: Access to the path '\\192.168.100.227\content\2-Banner-20120402120304.png' is denied.
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.File.InternalCopy(String sourceFileName, String destFileName, Boolean overwrite)
at System.IO.File.Copy(String sourceFileName, String destFileName, Boolean overwrite)
at Admin.Controllers.OffersController.UploadNewFiles(OfferModel offer)
我检查了目录的安全设置,我可以看到以下用户确实对文件夹具有完全访问权限
- 用户
- 系统
- 网络服务
- 架子
- 史蒂文·韦德
- 管理员
- 用户
任何想法为什么我不能通过 ASP.NET 复制它们?
史蒂文