Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
274 views
in Technique[技术] by (71.8m points)

python - 删除文件或文件夹(Delete a file or folder)

如何在Python中删除文件或文件夹?

  ask by Zygimantas translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

os.remove() removes a file. (os.remove()删除文件。)

os.rmdir() removes an empty directory. (os.rmdir()删除一个空目录。)

shutil.rmtree() deletes a directory and all its contents. (shutil.rmtree()删除目录及其所有内容。)


Path objects from the Python 3.4+ pathlib module also expose these instance methods: (Python 3.4+ pathlib模块中的Path对象也公开了这些实例方法:)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...