大きなファイル (50Mb 以上) を Web サーバーにアップロードしようとしていますが、ストリームを閉じようとするとアプリがハングします。アップロードされたファイルが 50Mb より大きい場合、.Close() によってハングしますが、エラー メッセージはまったく表示されませんが、50Mb 未満のファイルは成功します。
私のアプリをぶら下げている fstream.Close() を回避するために何を提案しますか?
Dim target As New Uri(uploadedFilePath)
Dim fRequest As System.Net.FtpWebRequest = System.Net.WebRequest.Create(target)
fRequest.Credentials = New System.Net.NetworkCredential(usr, pswd)
fRequest.KeepAlive = False
fRequest.Proxy = Nothing
fRequest.UsePassive = True
fRequest.UseBinary = True
fRequest.Method = System.Net.WebRequestMethods.Ftp.UploadFile
fRequest.Timeout = 180000
Dim count As Integer = 0
Dim readBytes As Integer = 0
Const bufferLength As Integer = 8192
Dim buffer As Byte() = New Byte(bufferLength - 1) {}
Dim fs As FileStream = File.OpenRead(localFileName)
Dim fStream As Stream = fRequest.GetRequestStream
Console.WriteLine("Writing bytes to the stream. {0}", String.Format("{0:HH:mm}", Now))
Do
readBytes = fs.Read(buffer, 0, bufferLength)
fStream.Write(buffer, 0, readBytes)
count += readBytes
Loop While readBytes <> 0
Console.WriteLine("Writing {0} bytes to the stream. {1}", count, String.Format("{0:HH:mm}", Now))
fStream.Close()
Console.WriteLine("fstream Closed {0}", String.Format("{0:HH:mm}", Now))
出力は次のようになります。
Writing bytes to the stream. 13:08
Writing 51391500 bytes to the stream. 13:18
最後の Console.Writeline は決して出力されないことに注意してください。
PS Visual Studio 2010 および .Net Framework 4.0 を使用