0

私は以下を使用してファイルを作成しようとしています:

Dim stmFile As Stream = File.Open(filename, FileMode.OpenOrCreate, FileAccess.Write)

指定されたファイルは現在存在しないため、これによりファイルが作成されますが、代わりにサーバーエラーがスローされます。

Could not find a part of the path 'c:\tempemail\681968_File.doc'. 

Description: An unhandled exception occurred during the execution of the current web
request. Please review the stack trace for more information about the error and where 
it originated in the code. 

Exception Details: System.IO.DirectoryNotFoundException: 
Could not find a part of the path 'c:\tempemail\681968_File.doc'.

何かアドバイス?

4

1 に答える 1

1

次を試してください

  • 存在することを確認しtempemailます
  • アプリケーションプールユーザーがフォルダーへの書き込み権限を持っていることを確認してください。
于 2012-09-25T10:24:31.100 に答える