上传者: 38575536
|
上传时间: 2022-01-21 23:25:03
|
文件大小: 54KB
|
文件类型: -
一、DataTable数据写入CSV文件
public static void SaveCSV(DataTable dt, string fullPath)//table数据写入csv
{
System.IO.FileInfo fi = new System.IO.FileInfo(fullPath);
if (!fi.Directory.Exists)
{
fi.Directory.Create();
}
System.IO.FileStream fs = new System.IO.FileStream(fullPath, System.IO.FileMode