前期准备:假如在D盘根目录下建立一个.bat
文件,再建立一个名字为"file.txt"的文本文档.然后判断D盘根目录下是否有a.mp3和b.mp3以及c.mp3这些文件.程序如下:\x0d\x0a@echo off\x0d\x0aif exist D:\a.mp3 echo a.mp3>>file.txt\x0d\x0a if not exist D:\a.mp3 echo a.mp3
不存在>>file.txt\x0d\x0aif exist D:\b.mp3 echo b.mp3>>file.txt\x0d\x0a if not exist D:\b.mp3 echo b.mp3不存在>>file.txt\x0d\x0aif exist D:\c.mp3 echo c.mp3>>file.txt\x0d\x0a if not exist D:\c.mp3 echo c.mp3不存在>>file.txt前期准备:假如在D盘根目录下建立一个.bat文件,再建立一个名字为"file.txt"的文本文档.然后判断D盘根目录下是否有a.mp3和b.mp3以及c.mp3这些文件.程序如下:
@echo off
if exist D:\a.mp3 echo a.mp3>>file.txt
if not exist D:\a.mp3 echo a.mp3不存在>>file.txt
if exist D:\b.mp3 echo b.mp3>>file.txt
if not exist D:\b.mp3 echo b.mp3不存在>>file.txt
if exist D:\c.mp3 echo c.mp3>>file.txt
if not exist D:\c.mp3 echo c.mp3不存在>>file.txt
文件夹里没有文件的可以用rd
命令删除(内部命令),如文件夹名是123,在命令提示符输入rd
123;如果文件夹里有文件的就要用deltree命令(外部命令,要dos系统里带有deltree.exe文件)用法一样.deltree
123
回车
...
提示输入y回车。
评论列表(0条)