...
判断是文件还是文件夹: 删除文件: System.IO.File.Delete 文档的路径 获取指定目录下的所有文档名字: Directory.GetFiles path 获取路径: Server.MapPath .. uploadFiles DocRecordFiles 注意:.. 是先返回上级,然后找到 uploadFiles DocRecordFiles Server.MapPath能够获 ...
2020-01-18 09:59 0 1229 推荐指数:
...
...
...
...
1.判断文件夹是否存在 if (!Directory.Exists(sPath)) { Directory.CreateDirectory(sPath); } //从指定路径中删除空目录。 2.判断文件是否存在 ...
...
DirectoryInfo directory = new DirectoryInfo(@"D:\0001\" + year + @"\" + time.Substring(4,2) + @"\" + LocaleId + @"\"); if (!directory.Exists)//不存在 ...