制作一个分类程序
的有关信息介绍如下:使用分类程序能够很快的将一种文件类型转移到指定文件夹,无需人工分拣。
在桌面上右击-新建-文本文档
接下来我们要编写代码了。
将扩展名为a的文件移动到一个文件夹内:
if exist *.扩展名a move *.扩展名a 该文件类型保存的路径
将文件名为b的文件移动到一个文件夹内:
if exist 文件名b move 文件名b 该文件保存的路径
举个例子:我要将DOC文件移动到E盘根目录下,其代码为:
if exist *.doc move *.doc E:\
之后我们要把这个TXT文本文档文件修改为后缀名为“.bat”的Windows批处理文件。
其方法可以是直接修改后缀名或 文件-另存为-将文件名中的.txt改为.bat-保存
之后,打开这个程序,这个程序所在的文件夹中的DOC文件就会乖乖的到E盘根目录下(加密文件除外)
这里我给大家列举了几个常用的文件类型,复制下来自己添加路径就好了
if exist *.txt move *.txt
if exist *.pdf move *.pdf
if exist *.doc move *.doc
if exist *.docx move *.docx
if exist *.xls move *.xls
if exist *.xlsx move *.xlsx
if exist *.ppt move *.ppt
if exist *.pptx move *.pptx
if exist *.mp4 move *.mp4
if exist *.mov move *.mov
if exist *.rmvb move *.rmvb
if exist *.jpeg move *.jpeg
if exist *.jpg move *.jpg
if exist *.gif move *.gif
if exist *.bmp move *.bmp
if exist *.psd move *.psd
if exist *.mp3 move *.mp3
if exist *.wav move *.wav
if exist *.exe move *.exe
if exist *.msi move *.msi
if exist *.pproj move *.pproj
if exist *.aep move *.aep
if exist *.vsd move *.vsd
if exist *.vsdx move *.vsdx
if exist *.vss move *.vss
if exist *.pub move *.pub
if exist *.zip move *.zip
if exist *.rar move *.rar
if exist *.7z move *.7z