Last active
December 11, 2015 10:08
-
-
Save ma34s/4584657 to your computer and use it in GitHub Desktop.
32bitと64bitで処理分けるバッチ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" goto x64 | |
:x32 | |
cd %~dp0_x32 | |
SET XCOPY_EXE=XXXXX | |
goto process | |
:x64 | |
cd %~dp0_x64 | |
SET XCOPY_EXE=XXXXX | |
goto process | |
:process | |
%XCOPY_EXE% xxxx yyyy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment