对于我的节目,我有3个节目 它们都将列在下面
C:\的Python \数据\ fold1 \ subfile.py
import json
import sys
part = sys.path[0].split('\\') '''This part adds
del (part[part.index('Python') + 1:len(part)]) a system path
sys.path.insert(1, '\\'.join(part)) C:\Python'''
from data.fold2.other import accounts_list
class AddUser():
def __init__(self, username, password, Type=1):
self.username = username
self.password = password
self.Type = Type
accounts_list[self.username] = [self.password, self.Type]
with open('data\\fold2\\other.py', 'w') as file:
file.write('accounts_list = ' + json.dumps(accounts_list))
C:\的Python \数据\ fold2 \ start.py
import sys
from other import accounts_list
part = sys.path[0].split('\\') '''This part adds
del (part[part.index('Python') + 1:len(part)]) a system path
sys.path.insert(1, '\\'.join(part)) C:\Python'''
from data.fold1 import subfile
subfile.AddUser('username', 'password')
C:\的Python \数据\ fold2 \ other.py
accounts_list = {}
当我运行我的主程序时,启动,我收到错误:
File "C:\Python\data\fold1\subfile.py", line 16, in __init__
with open('data\\fold2\\other.py', 'w') as file:
FileNotFoundError: [Errno 2] No such file or directory: 'data\\fold2\\other.py'
我不知道如何解决此错误,因为我还是初学者。 如果有人知道该怎么做,请提供答案。
-Thanks
答案 0 :(得分:0)
在打开文件方面,我建议您查看:Open file in a relative location in Python否则,您的问题只是如上所述,您正在尝试访问不存在的文件。要在子文件夹之间切换,只需使用../fold2/other.py
。