本文主要是介绍使用Python+os/shutil删除文件、空目录和非空目录,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一、使用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')
这篇关于使用Python+os/shutil删除文件、空目录和非空目录的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!