10 lines
173 B
Batchfile
10 lines
173 B
Batchfile
|
@echo off
|
||
|
for %%i in (%0) do (
|
||
|
set "FolderPath=%%~dpi"
|
||
|
)
|
||
|
|
||
|
set "ScriptName=NovelManage.py"
|
||
|
set ScriptPath=%FolderPath%%ScriptName%
|
||
|
|
||
|
@echo on
|
||
|
python %ScriptPath% wnss -cmp
|