我只是想检索某个目录中的所有文件。
if (System.IO.Directory.Exists(dir_path)) //this line passes
{
//The following files array is empty although there's clearly files
string[] files = System.IO.Directory.GetFiles(dir_path);
}
有没有办法复制所有子目录,复制时所有文件仍在各自的子目录中?