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.

How can I copy all files that have a [dot]something to a flash dirve using a batch file? For example, c all file on the computer that have the file extension .txt.

share|improve this question

2 Answers

When doing it directly on the command line, it's just:

for /r %x in (*.txt) do copy "%x" F:\

Assuming that F:\ is your flash drive, and that you start at the root of the directory tree containing those text files. In other words, if you're in C:\test it will find every text file in there or any subfolder and copy those to F:\ So you might want to create a batch file like:

@echo off
c:
cd \wherever\the\text\files\are
for /r %%x in (*.txt) do copy "%%x" F:\

(EDIT: Oops. Have to double the %s when in a batch file.)

share|improve this answer
cd /D \wherever\the\text\files\are - to switch the drive if it's needed – npocmaka Aug 5 '12 at 9:11
1  
More like cd /D C:\wherever\the\text\files\are :) Not much use using the /D switch without specifying an actual drive letter. – Qsario Aug 5 '12 at 9:17

This question doesn't really belong on this site... but assuming your drive is D:\

copy C:\Path\To\Copy\From\*.txt D:\
share|improve this answer
Sorry, but this only copys files that are in the same dictionary! D: – user1510739 Aug 5 '12 at 5:48
Then specify the path... see revised answer – Geoffrey Aug 5 '12 at 9:32

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.