System.IO.Stream
このようにAjaxFileUploadでファイルを取得したいです。これは古典的な FileUpload コンポーネントです。
System.IO.Stream theStream = fileUpload.PostedFile.InputStream;
誰かが私にやり方を教えてもらえますか?
ファイルを一時的に保存してから、それを読み取って FileStream を取得できます。少し汚いかもしれませんが、私にとってはうまくいきました。
VB.NET:
Dim tempPath As String = System.IO.Path.GetTempFileName()
yourAjaxFileUpload.SaveAs(tempPath)
Using fs As FileStream = File.OpenRead(tempPath)
'Do stuff with fs here
End Using
File.Delete(tempPath)
C#:
string tempPath = System.IO.Path.GetTempFileName();
yourAjaxFileUpload.SaveAs(tempPath);
using (FileStream fs = File.OpenRead(tempPath)) {
//do stuff with fs here
}
File.Delete(tempPath);