mirror of
https://gitlab.com/Theopse/fbi-i18n-zh.git
synced 2025-04-06 03:58:02 +08:00
12 lines
214 B
Batchfile
12 lines
214 B
Batchfile
@ECHO OFF
|
|
set /p DSIP="Enter the IP of your 3DS: "
|
|
for %%a in (%*) do (
|
|
if "%%~xa"==".cia" (
|
|
python "%~dp0servefiles.py" %DSIP% "%%~a"
|
|
)
|
|
if "%%~xa"=="" (
|
|
python "%~dp0servefiles.py" %DSIP% "%%~a"
|
|
)
|
|
)
|
|
pause
|