摘要:
/// /// 将DataTable转成Model /// /// /// public class ModelConvertHelper where T : new() { public static List ConvertToModel(DataTable dt) { /... 阅读全文
摘要:
2. 传入Excel的路径即可 阅读全文
摘要:
if (System.IO.File.GetAttributes(filePath).ToString().IndexOf("ReadOnly") != -1)//去除文件只读属性 { File.SetAttributes(filePath, FileAttributes.Normal); } string[] folders = Directory.GetDire... 阅读全文