上传的文件是否以制表符分隔的格式
本文关键字:制表符 分隔 格式 是否 文件 | 更新日期: 2023-09-27 18:18:38
我使用的是ASP。Net fileupload控件,允许用户上传扩展名为txt的以制表符分隔的文件。
我如何在代码中确保文件是制表符分隔的?我正在使用c#。
目前,我正在使用以下代码:
StreamReader stream = null;
if (FileUpload1.HasFile)
{
if (FileUpload1.FileName.EndsWith("txt") )
{
string filename = Path.Combine(Server.MapPath("~/files"), Guid.NewGuid().ToString() + ".txt");
FileUpload1.PostedFile.SaveAs(filename);
Session["UploadedFileName"] = filename;
stream = new StreamReader(FileUpload1.PostedFile.InputStream);
}
else
{
lblMessage.Text = "File format not supported. Please use a tab delimited .txt file.";
pnlMessage.Visible = true;
return;
}
}
else
{
lblMessage.Text = "You must select a file to upload.";
pnlMessage.Visible = true;
return;
}
服务器控件一次只能上传一个文件不支持上传多个文件