string path = Server.MapPath("/Files/")//文件夹路径
string[] paths = Directory.GetFiles(path)//获取文件夹下全部文件路径
List<FileInfo>files = new List<FileInfo>()
foreach (string filepath in paths)
{
FileInfo file = new FileInfo(filepath)//获取单个文件
files.Add(file)
}
return files//所有文件
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)