How do I delete a file or folder in Python?

Better Stack Team
Updated on January 26, 2023

You can use the os module to delete a file or folder in Python.

To delete a file, you can use the os.remove() function. This function takes the file path as an argument and deletes the file at that path.

 
import os

# Delete the file at the specified path
os.remove("/path/to/file.txt")

To delete a folder, you can use the os.rmdir() function. This function takes the folder path as an argument and deletes the folder at that path. Note that the folder must be empty in order for this function to work.

 
import os

# Delete the folder at the specified path
os.rmdir("/path/to/folder")

If you want to delete a folder and all of its contents, you can use the shutil module's rmtree() function. This function takes the folder path as an argument and deletes the folder and all of its contents, including any subfolders and files.

 
import shutil

# Delete the folder and all of its contents
shutil.rmtree("/path/to/folder")

Make your mark

Join the writer's program

Are you a developer and love writing and sharing your knowledge with the world? Join our guest writing program and get paid for writing amazing technical guides. We'll get them to the right readers that will appreciate them.

Write for us
Writer of the month
Marin Bezhanov
Marin is a software engineer and architect with a broad range of experience working...
Build on top of Better Stack

Write a script, app or project on top of Better Stack and share it with the world. Make a public repository and share it with us at our email.

community@betterstack.com

or submit a pull request and help us build better products for everyone.

See the full list of amazing projects on github