在windows的命令行状态下,写一个批处理作业程序

2024年12月04日 13:00
有3个网友回答
网友(1):

@echo off
dir /a:d
md newfolder
move a.ext .\newfolder\
move b.ext .\newfolder\
move c.ext .\newfolder\
dir *.exe > temp.txt
type temp.txt
@echo on

补充说明:
不太明白第2句所说的列出所有目录清单指的是仅文件夹还是包括文件,我上面写的是仅文件夹,如果包括文件,把/a:d去掉就可以了。

网友(2):

我会的,懒得写,纸条

网友(3):

执行一句显示一句
是什么东东?