python删除文件或文件夹

os.remove() will remove a file.

os.rmdir() will remove an empty directory.

shutil.rmtree() will delete a directory and all its contents.

你可能感兴趣的:(python删除文件或文件夹)