我想開發一個asp應用程序(我的asp解決方案是在c:\ inetpub)。我需要一個記錄器。 所以我在我的解決方案中創建一個文件夾日誌和我嘗試保存有一個* .log文件:Inetpub -acces被拒絕?
using (FileStream fs = File.Create(logPath))
{...}
// logpath = Server.MapPath(@"~\Logs") + Path.DirectorySeparatorChar + logName
// so: logpath = C:\\inetpub\\wwwroot\\MyApplication\\Logs\\MyLog.log
我得到的錯誤:
Access to the path 'C:\inetpub\wwwroot\MyApplication\Logs\MyLog.log' is denied.
是否有一個解決方案?我需要安裝程序能夠提供訪問inetpub ... 我問也是否這是錯誤的方式來創建日誌?也許存在一個模式用於...? 謝謝
謝謝!這是有幫助的。你救了我的星期五:) – Victor
我歡迎你。這是我的榮幸。 –