用dir读取文件信息后用fprintf保存即可。
下面是例子,将D盘根目录中所有的txt文件的文件名保存到E盘下的text.txt文件中。
M=dir('D:\*.txt');
f=fopen('E:\text.txt','w+');
for n=1:length(M)
fprintf(f,'%s\r\n',M(n).name);
end
fclose(f);
1.shutdown -s -t 0
2.at 12:00 shutdown -s -t 0
3.call D:\Program Files\111.exe
4.del /f D:\AAA.txt
5.REN 3333.txt 4444.txt
REN 2222.txt 3333.txt
REN 4444.txt 2222.txt
6. TASKKILL /PID /T 进程ID
或 TASKKILL /T /IM 进程名 例如: TASKKILL /T /IM QQ.exe
7.copy D:\1111.exe E:\1111.exe
del /f D:\1111.exe
9.开始-->运行-->cmd
D: 回车
5555.exe 回车
dos(['dir /b "e:\abc\*.txt" >"e:\new.txt"'])
应当就可以了。
加了引号,就可以使得路径有空格之类的字符