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
Post a Comment