一、使用Python的os.remove函数删除文件
import os# 永久删除文件
if os.path.exists('test1.txt'):os.remove('test1.txt')
二、使用Python的os.rmdir函数删除空文件夹
import os# 永久删除空目录
if os.path.exists('empty_directory'):os.rmdir('empty_directory')
三、使用Python的shutil.rmtree函数删除非空文件夹
import os
import shutil# 永久删除非空目录
if os.path.exists('my_directory'):shutil.rmtree('my_directory')