次の行は例外をスローしています。理由はわかりません。
using (var output = new FileStream(sftpFile.Name, FileMode.Create,FileAccess.ReadWrite))
例外は次のとおりです。
Error: System.UnauthorizedAccessException: Access to the path 'C:\Users\roberth\
Programming_Projects\Common\UI\bin\Debug' is denied.
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access,
Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions
options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy,
Boolean useLongPath, Boolean checkHost)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access)
at CWD.Networking.DownloadFromSftp(String hostname, String user, String passw
ord, Int32 port, String localPath, String remotePath, String filename) in c:\Use
rs\roberth\Programming_Projects\Common\Common\Common.cs:line 566
行566は、上記のusingステートメントです。
なぜ私がエラーを引き起こしているのかについて誰かが光を当てることができますか?私はディレクトリへの完全な権限を持っており、コンパイルの問題はありません。そのディレクトリに新しいファイルやフォルダを手動で作成することもできます。
- 編集 -
解決策なしで提案されたように、管理者としてVSを実行してみました。