Я предполагаю, что это для резервного копирования или аналогичного. Если это так, я создал bat-файл и по расписанию запускает его раз в неделю.
Попробуйте сделать файл летучей мыши.
Откройте блокнот и введите
xcopy "file location" "file destination" /i /e /y /z
например
xcopy "c:\allmusic\mp3\" "e:\music\" /i /e /y /z
Сохраните файл как .bat (например, «copyFiles.bat»)
Вы можете иметь несколько строк, но по одной на строку. НАПРИМЕР
xcopy "c:\allmusic\mp3\" "e:\music\" /i /e /y /z
xcopy "c:\allmusic\wav\" "e:\music\" /i /e /y /z
xcopy "c:\allmusic\wmv\" "e:\music\" /i /e /y /z
Обратите внимание, что /i
/y
/e
и /z
имеют значения, которые могут быть желательными или нет (например, перезапись), см. Список здесь:
/A Copies only files with the archive attribute set, doesn't change the attribute.
/M Copies only files with the archive attribute set, turns off the archive attribute.
/D:m-d-y Copies files changed on or after the specified date. If no date is given, copies only those files whose source time is newer than the destination time.
/EXCLUDE:file1[+file2][+file3]... Specifies a list of files containing strings. When any of the strings match any part of the absolute path of the file to be copied, that file will be excluded from being copied. For example, specifying a string like \obj\ or .obj will exclude all files underneath the directory obj or all files with the .obj extension respectively.
/P Prompts you before creating each destination file.
/S Copies directories and subdirectories except empty ones.
/E Copies directories and subdirectories, including empty ones. Same as /S /E. May be used to modify /T.
/V Verifies each new file.
/W Prompts you to press a key before copying.
/C Continues copying even if errors occur.
/I If destination does not exist and copying more than one file, assumes that destination must be a directory.
/Q Does not display file names while copying.
/F Displays full source and destination file names while copying.
/L Displays files that would be copied.
/H Copies hidden and system files also.
/R Overwrites read-only files.
/T Creates directory structure, but does not copy files. Does not include empty directories or subdirectories. /T /E includes empty directories and subdirectories.
/U Copies only files that already exist in destination.
/K Copies attributes. Normal Xcopy will reset read-only attribute
/N Copies using the generated short names.
/O Copies file ownership and ACL information.
/X Copies file audit settings (implies /O).
/Y Suppresses prompting to confirm you want to overwrite an existing destination file.
/-Y Causes prompting to confirm you want to overwrite an existing destination file.
/Z Copies networked files in restartable mode.
Вы также можете использовать "переместить", который похож на вырезать и вставить
например
переместить "источник" "место назначения"
move "c:\allmusic\mp3\" "e:\music\" /i /e /y /z
move "c:\allmusic\wav\" "e:\music\" /i /e /y /z
move "c:\allmusic\wmv\" "e:\music\" /i /e /y /z
РЕДАКТИРОВАТЬ
Для копирования различных папок с помощью цикла, попробуйте
for /f %%f in ('dir /b c:\') do (
cd\
cd %%f
copy *.mp3 "e:\music"
for /f %%g in ('dir /b %%f') do (
cd\
cd %%g
copy *.mp3 "e:\music"
for /f %%h in ('dir /b %%g') do (
cd\
cd %%h
copy *.mp3 "e:\music"
pause
)
)
)
Обратите внимание, что это делает 3 уровня подпапок