페이지 트리

폴더 복사

C:\> xcopy some_source_dir new_destination_dir\ /E /H /Y
  • /E - Copy all subdirectories
  • /H - Copy hidden files too (e.g. .git)
  • /Y - Without prompt

폴더 이동

C:\> move some_directory new_directory_name
  • /Q - Do not prompt with "Are you sure?"
  • /S - Delete all contents and sub-directories

폴더 삭제

C:\> rmdir some_directory /Q /S

  • /Q - Do not prompt with "Are you sure?"
  • /S - Delete all contents and sub-directories
  • 레이블 없음