嘿,我正在使用qpython3并希望使用Python删除我的DCIM文件,但它仍然不起作用。我正在使用摩托罗拉Moto G 2.与Android 4.4: 这是代码我需要改变什么?
import os
path = os.environ["sdcard"] + "/DCIM"
if os.path.exists(path) == True:
print(path, "exists.")
os.remove(path)
print("File succesfully deleted.")
else:
print(path,"File not existing.")
Keyerror:b“sdcard”
感谢您的回答。