我想使用 Chaquopy 读取文件。在出现诸如“PermissionError”之类的错误之后,我在 Python Idle 和 Chaquopy 中编写了相同的代码:
Idle 中的此代码在输出中写入“True”。
import xlrd, os
filename = 'F:/q1.xlsx'
print(os.path.isfile(filename))
Chaquopy 中的这个输出“假”:
import xlrd, os
filename = 'F:/q1.xlsx'
self.findViewById(R.id.label).setText(str(os.path.isfile(filename)))
我尝试了所有描述的'\'和'/'的组合。如果我只写它的相对路径,它也无法使用 Python 活动打开同一文件夹中的文件。如何使 Chaquopy 正确处理文件?