windows - How to copy specific files from one folder to another from the command prompt -


i have large folder of pictures (thousands), , have long list of files, exact file name, need copy folder using windows commands, through cmd prompt only. use windows 7.

i want know if there way can select several specific files folder, name, , copy them folder, using terminal, without copying them individually?.

i know can xcopy want copy specific types of files 'jpeg','bmp',etc.

try using

xcopy /d /y /s "\your image folder\*.jpg" "c:\users\%username%\desktop\master image folder\"  

also can use

copy *.<extension> <other folder> 

for example :

copy c:\users\desktop\*.jpg d:\backup 

will copy files extension .jpg path c:\users\desktop\ d:\backup\


Comments

Popular posts from this blog

asp.net - How to correctly use QUERY_STRING in ISAPI rewrite? -

jsf - "PropertyNotWritableException: Illegal Syntax for Set Operation" error when setting value in bean -

laravel - Undefined property: Illuminate\Pagination\LengthAwarePaginator::$id (View: F:\project\resources\views\admin\carousels\index.blade.php) -