在批处理文件中,如何删除非特定类型的所有文件

时间:2009-05-14 14:12:39

标签: windows batch-file cmd dos

我正在编写一个批处理文件,需要删除某个目录中的所有文件及其所有子目录特定类型的目录外。

我该怎么做?

7 个答案:

答案 0 :(得分:2)

我写了这个批处理文件之后,同事要求帮助删除文件夹和所有子文件夹中某些类型的文件的所有文件,同时保持目录结构。我建议您在尝试之前备份文件夹。只需打开记事本并粘贴以下内容,将其另存为.bat而不是.txt 祝好运! 〜卡罗琳

REM Use at your own risk, it does a mass DELETE of everything!

SET /p ExcludeFiles=What file type should be kept (NOT deleted)? Type the file name(s) inside parantheses. example: (pdf) or (shp dbf shx)     
SET /p MapDrive=What drive letter is the folder in? example: c or n     
SET /p Directory=Drag the folder you would like to modify into this command prompt then press ENTER.     

%MapDrive%:
cd %Directory%

attrib +a *.* /s
echo %date%
for %%i in %ExcludeFiles% do attrib -a *.%%i /s
echo %date%
del %Directory%\*.* /s /a:a /q

echo %date%
attrib +a %Directory%\*.* /s
echo %date%

答案 1 :(得分:1)

你可以尝试一下

for /f "usebackq delims=" %i in (`dir /s /b *`) do if not %~xi==.txt del %i

对于您在评论中提出的问题,您可以尝试以下方法:

robocopy source_folder target_folder *.java /s

xcopy *.java target_folder /s

保留目录结构,但只复制.java个文件。

答案 2 :(得分:1)

最安全的方法是复制您想要的所有文件并删除其余文件     XCOPY * .java c:\ new_directory / s

/ s复制子目录

答案 3 :(得分:1)

我正在使用此处找到的解决方案: How can I delete all files/subdirs except for some files in DOS?

试一试:)

答案 4 :(得分:0)

尝试研究here

虽然它没有准确地告诉你你的要求,但我认为这是一个很好的起点。

答案 5 :(得分:0)

你可以试试这个:

ECHO DIR %address% /S /B | FIND /C %theType%>temptemp.txt
FOR /f %%a IN (temptemp.txt) DO DEL %%a
DEL temptemp.txt

变量address是目录,变量theType是你不想删除的类型。

答案 6 :(得分:0)

FORFILES /s /p c:\dir /c "if not @ext==.txt del /f @file"