摘要:
//这里的案例是自动生成excel string pathstr = System.Web.HttpContext.Current.Server.MapPath("/FilePath"); if (!System.IO.Directory.Exists(pathstr)) System.IO.Directory.CreateDirectory(pathstr); string filePath = 阅读全文
摘要:
string pathstr = System.Web.HttpContext.Current.Server.MapPath("/FilePath"); if (Directory.Exists(pathstr)) { //获取指定路径下所有文件夹 //string[] folder... 阅读全文