我有一个包含子文件夹和一组文本文件的文件夹。我正在尝试使用以下代码删除子文件夹
Path = '/Desktop/foldername/'
folder = 'Path/'
for the_file in os.listdir(folder):
file_path = os.path.join(folder, the_file)
try:
if os.path.isfile(file_path):
os.unlink(file_path)
elif os.path.isdir(file_path): shutil.rmtree(file_path)
except Exception as e:
print(e)
我不断收到错误文件夹不存在。任何人都可以建议我哪里错了。谢谢。