2022-10-03 19:35:10 +02:00
@ echo off
2022-10-04 16:18:34 +02:00
if exist " %SD_BASE_DIR% \env " exit /b
2022-10-03 19:35:10 +02:00
set suggested_dir = %~d0 \stable-diffusion-ui
echo " Please install Stable Diffusion UI at the root of your drive. This avoids problems with path length limits in Windows. " & echo .
set /p answer = " Press Enter to install at %suggested_dir% , or type 'c' (without quotes) to install at the current location (press enter or type 'c'): "
if /i " %answer:~,1% " NEQ " c " (
if exist " %suggested_dir% " (
echo . & echo " Sorry, %suggested_dir% already exists! Cannot overwrite that folder! " & echo .
pause
exit
)
xcopy " %SD_BASE_DIR% " " %suggested_dir% " /s /i /Y /Q
2022-10-03 19:56:15 +02:00
echo Please run the %START_CMD_FILENAME% file inside %suggested_dir% . Do not use this folder anymore > " %SD_BASE_DIR% /READ_ME - DO_NOT_USE_THIS_FOLDER.txt "
2022-10-03 19:35:10 +02:00
cd %suggested_dir%
)