Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a long list of file names in a txt file, which I generated using

findstr /M "string here" *.* > c:\files.log

The file is about 3mb. Now i want to delete all of those files. I tried del < c:\files.log but that doesn't work. What should I use?

share|improve this question
1  
probably belongs on ServerFault or SuperUser – Nathan Koop Jul 24 '09 at 17:12
1  
Batch programming is programming, isn't it? – Nick Meyer Jul 24 '09 at 17:27
Woah, that came out way more trollish than I intended. – Nick Meyer Jul 24 '09 at 17:28

4 Answers

up vote 3 down vote accepted

Batch for NT on up supports a FOR loop with special switches

FOR /F seems to fit what you want as it allows input from a file and positional delimiters.

See .. http://ss64.com/nt/for_f.html

You are looking for something like...

for /F "tokens=*" %%a in (files.log) DO DELETE "%%a"

share|improve this answer
For bonus points OP could pipe his findstr input into the FOR. – Rob Elliott Jul 24 '09 at 17:17
Absolutely.... However, segmenting things into a files allows you to inspect/debug batch files. – CMB Jul 24 '09 at 17:18
Rob: You can't pipe into for. You'd have to use for /f %x in ('some command'). But you can't pipe into it :) – Јοеу Jul 24 '09 at 20:54

This should work:

for /f "tokens=1*" %a in (filelist.txt) do del %a
share|improve this answer
Also "delims=" to only have the End-of-line as a delimiter, for long filenames. – Jay Jan 13 '12 at 13:43

If you install Cygwin or something similar it's just:

cat files.log | xargs rm
share|improve this answer

You must have %%a and not %a inside the batch file %a for cmd

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.