Search found 2 matches
- 01 Dec 2011 01:25
- Forum: DOS Batch Forum
- Topic: [SOLVED]folder filter by name
- Replies: 2
- Views: 3333
[SOLVED] folder filter by name
Tks trebor68, works like a champ.
- 29 Nov 2011 23:41
- Forum: DOS Batch Forum
- Topic: [SOLVED]folder filter by name
- Replies: 2
- Views: 3333
[SOLVED]folder filter by name
Hi, I need loop through a list of folder that have the same prefix, say (A1, A2,...,A100) and copy my files (from a source folder) to each folder. My try: FOR %%A IN (*A*) DO ( XCOPY sourceFolder %%A /s/e ) It doesn't pick the folder, it picks some files with the same prefix (say Annn.zip). I want t...