如果使用dir命令显示一个文件夹下所有文件的完整路径,可用下面命令:
dir /B /S d:\qwe
需要分屏显示时加/p参数
output to file:
dir /B /S d:\qwe > filelist.txt
in C++:
system(R”(dir /B /S d:\qwe > filelist.txt)”);
如果使用dir命令显示一个文件夹下所有文件的完整路径,可用下面命令:
dir /B /S d:\qwe
需要分屏显示时加/p参数
output to file:
dir /B /S d:\qwe > filelist.txt
in C++:
system(R”(dir /B /S d:\qwe > filelist.txt)”);