获取文件夹下的所有文件:
Directory.GetFiles("路径")
获取文件夹下的所有文件夹:
Directory.GetDirectories("路径")
获取文件夹中后缀为".xlsx"的文件:
Directory.GetFiles("路径","*.xlsx")
获取文件所在文件夹:
Path.getDirectoryName(str)
获取文件后缀名 :
Path.getExtension()
获取文件全名 :
Path.getFileName()
获取文件不带后缀的名称 :
Path.getFileNameWithoutExtension()
文件夹下的文件数:
Directory.GetFiles(“路径”).Length