标签:
从绝对路径提取文件名
string fullPath="D:\\xxx\123.bmp";
Path.GetFileName(strFilePath);
获取文件列表
string[] fileName = GetFileNameList(path, @".*\.bmp");
获取文件夹列表
string[] subFolder = Directory.GetDirectories(path);
删除非空文件夹
Directory.Delete(path, true);
标签:
原文地址:http://www.cnblogs.com/xieqianli/p/5652210.html