> / content / images / full> / content / images / thumbs
我的c#控制器中如何获取我的拇指文件夹中的所有文件的列表?
编辑
Server.MapPath还是最好的办法吗?
我现在有DirectoryInfo di = new DirectoryInfo(Server.MapPath(“/ content / images / thumbs”));但觉得这不是正确的方法.
在MVC中是否有最佳做法或以上是否正确?
Directory.GetFiles("/content/images/thumbs")
这将使目录中的所有文件都成为一个字符串数组.