12 lines
183 B
Python
12 lines
183 B
Python
# -*- coding:utf8 -*-
|
|
import os
|
|
|
|
import platform
|
|
|
|
# if platform.system() == "Windows":
|
|
# os.system("copy .\\pos.txt ..\\")
|
|
# else:
|
|
os.system("cp ./pos.txt ../")
|
|
|
|
# os.system("pause")
|