可能性の重複:
How do I copy files using Windows Batch?バッチファイルを使用してファイルをコピーする方法は?
こんにちは、私は、例えば19_1_White.jpgディレクトリ内のフォルダに特定のファイルをコピーするバッチファイルを作成する必要がありますか?コマンドXCOPY 例えばXCOPY A.jpg Cを使用する必要があり
可能性の重複:
How do I copy files using Windows Batch?バッチファイルを使用してファイルをコピーする方法は?
こんにちは、私は、例えば19_1_White.jpgディレクトリ内のフォルダに特定のファイルをコピーするバッチファイルを作成する必要がありますか?コマンドXCOPY 例えばXCOPY A.jpg Cを使用する必要があり
:\フォルダ\ A.jpg
は、あなたがあまりにも使用する可能性のある他のスイッチのためのhttp://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/xcopy.mspx?mfr=trueを見てみましょう。
リンクが死んでいる:) – mirosval
XCOPY F:\*.* G:\ /C /S /D /Y /I
XCOPY allows for copying of files, directories, and sub directories.
F:\*.* is our source location
G:\ is our destination location
/C tells XCOPY to ignore errors, and finish what can be done
/S tells XCOPY to copy everything including directories and
subdirectories
/D tells XCOPY to only copy source files that are newer than the
destination files (big time saver on the process)
/Y tells XCOPY to overwrite files without asking for confirmation
/I tells XCOPY to automatically create new directories on the
destination, if new directories were created in source.
私はなぜそれを試してみるのかわかりません。 – PD24
「Windowsバッチコピーファイル」でグーグルを試しましたか?同じことを尋ねる多くの質問もここにあります。 – Polynomial