asp.net读取某个文件夹下所有的文件名
asp.net读取某个文件夹下所有的文件名(不包含子文件夹)
System.IO.DirectoryInfo di = new
System.IO.DirectoryInfo(@"C:\Documents and Settings\Administrator\My
Documents\My Pictures");
System.IO.FileInfo[] fimore =
di.GetFiles();
foreach (System.IO.FileInfo fi in fimore)
{
Response.Write(fi.Name);
Response.Write("
");
}
这个例子是读取我的文档下的图片收藏文件夹下的文件。
文章标题:asp.net读取某个文件夹下所有的文件名
链接分享:
http://dzwzjz.com/article/pesjje.html