私がやろうとしているのは、「添付ファイル」という名前のWindowsアプリケーションフォルダ内にあるCSVファイルからデータを読み取ることです。Webアプリケーションでは、を使用してフォルダのパスを取得できます
Server.MapPath(@"Attachments/sample.csv");
Windowsアプリケーションからの同等の呼び出しは何ですか?
以下は私のコードです。
string[] str = File.ReadAllLines(@"Attachment/sample.csv");
// create new datatable
DataTable dt = new DataTable();
// get the column header means first line
string[] temp = str[0].Split(';');
// creates columns of gridview as per the header name
foreach (string t in temp)
{
dt.Columns.Add(t, typeof(string));
}