Update change_directory_by_replacement.py
This commit is contained in:
parent
cae7ec4f51
commit
881d1492c4
@ -1,5 +1,5 @@
|
|||||||
import os
|
import os
|
||||||
code_path = os.getcwd() # 查看当前代码文件的路径
|
code_path = os.getcwd() # 当前代码文件的路径
|
||||||
data_path = code_path.replace('\\', '/') # \改为/,防止路径报错
|
data_path = code_path.replace('\\', '/') # \改为/,防止路径报错
|
||||||
data_path = code_path.replace('codes', 'data') # 把路径中codes改为data
|
data_path = code_path.replace('codes', 'data') # 把路径中codes改为data
|
||||||
if os.path.exists(data_path) == False: # 如果文件夹不存在,新建文件夹
|
if os.path.exists(data_path) == False: # 如果文件夹不存在,新建文件夹
|
||||||
|
Loading…
x
Reference in New Issue
Block a user