dos 递归删除文件

some recource come from network, thanks all this people!

1.
::delete the special files in current directory recursively
设置文件属性
attrib -s -a -h  -r  *.c~ /s

删除文件
del  /s /q *.c~

2.
::delete all the files in the current directory, include the current directory  

rd /s /q  "D:\viss"


3.dos comments
在批处理中,段注释有一种比较常用的方法:

    goto start
     = 可以是多行文本,可以是命令
     = 可以包含重定向符号和其他特殊字符
     = 只要不包含 :start 这一行,就都是注释
    :start

   1、:: 注释内容(第一个冒号后也可以跟任何一个非字母数字的字符)
    2、rem 注释内容(不能出现重定向符号和管道符号)
    3、echo 注释内容(不能出现重定向符号和管道符号)〉nul
    4if not exist nul 注释内容(不能出现重定向符号和管道符号)
    5、:注释内容(注释文本不能与已有标签重名)
    6、%注释内容%(可以用作行间注释,不能出现重定向符号和管道符号)
    7、goto 标签 注释内容(可以用作说明goto的条件和执行内容)
    8、:标签 注释内容(可以用作标签下方段的执行内容)

你可能感兴趣的:(windows)