10 lines
112 B
Python
10 lines
112 B
Python
import os
|
|
import sys
|
|
|
|
|
|
DIR = os.getcwd()
|
|
print(DIR)
|
|
|
|
|
|
os.startfile('fix.bat')
|
|
os.startfile('start.bat') |