public ActionResult Import(HttpPostedFileBase currencyConversionsFile)
{
string filename = "CurrencyConversion Upload_" + DateTime.Now.ToString("dd-MM-yyyy") + ".csv";
string folderPath = Server.MapPath("~/Files/");
string filePath = Server.MapPath("~/Files/" + filename);
currencyConversionsFile.SaveAs(filePath);
string[] csvData = System.IO.File.ReadAllLines(filePath);
//the later code isn't show here
}
httppostedfilebase を String 配列に変換する通常の方法を知っています。これは、最初にファイルをサーバーに保存し、次にサーバーからデータを読み取ります。ファイルをサーバーに保存せずに httppostedfilebase から直接文字列配列を取得する方法はありますか?