Windowsでこれを行う方法?例えば:CP -R/tmpには/ var/tmpのBATCHファイルの完全なディレクトリコピーを実行し、ユーザの一時ディレクトリを見つける方法は?
: How to copy?
: cp -R this /var/tmp?
set temp=%USERPROFILE%
echo %temp%
copy thisWholeDirectoryIncludingSub/*.* %temp%
Windowsでこれを行う方法?例えば:CP -R/tmpには/ var/tmpのBATCHファイルの完全なディレクトリコピーを実行し、ユーザの一時ディレクトリを見つける方法は?
: How to copy?
: cp -R this /var/tmp?
set temp=%USERPROFILE%
echo %temp%
copy thisWholeDirectoryIncludingSub/*.* %temp%
私は/e
でxcopy
を使用したい: "空のものも含めてコピーするディレクトリとサブディレクトリを、。"
また、/h
:「コピーが隠され、システムファイルもあります」。
xcopy thisWholeDirectoryIncludingSub %temp% /e /h
http://ss64.com/nt/robocopy.html、http://ss64.com/nt/xcopy.html – Mat