C#遍历一个文件夹下的所有文件夹

  1. stringthePath="../../Upload/Star/";
  2. thePath=Server.MapPath(thePath);//得到文件绝对路径
  3. System.IO.DirectoryInfod=newSystem.IO.DirectoryInfo(thePath);
  4. System.IO.DirectoryInfo[]ds=d.GetDirectories("*.*",System.IO.SearchOption.TopDirectoryOnly);
  5. foreach(System.IO.DirectoryInfovarinds)
  6. {
  7. //路径全称
  8. Response.Write(var.FullName+"<br/>");//遍历文件夹下面的文件夹
  9. //仅文件名称
  10. Response.Write(var.Name+"<br/>");
  11. }

你可能感兴趣的:(文件夹)