3

I am fairly new here and didn't use a lot of Windows Command Prompt's advanced function. So bear with me...

Currently, I have a folder containing a lot of image files. The example file name is like 20130611.084021.c123.tif, which means YrMoDy.HrMinSec.cameraIDs.tif.

So I want to copy all of the files have the same following information in their file names to another folder: 20130611.08xxxx.c1xx.tif.

How can I do this in Windows Command Prompt?

Endoro
  • 37,015
  • 8
  • 50
  • 63
Nan An
  • 633
  • 3
  • 7
  • 11

1 Answers1

3
copy 20130611.08*.c1*.tif <destination folder>
David Cain
  • 16,484
  • 14
  • 65
  • 75
NolanPower
  • 409
  • 3
  • 11