Python Delete File
<!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]-->
Python Delete File
❮ Previous
Next ❯
Delete a File
To delete a file, you must import the OS module, and run itsos.remove() function:
Example
Remove the file "demofile.txt":
import os
os.remove("demofile.txt")Check if File exist:
To avoid getting an error, you might want to check if the file exist before you try to delete it:
Example
Check if file exist, then delete it:
import os
if os.path.exists("demofile.txt"):
os.remove("demofile.txt")
else:
print("The file does not exists")Delete Folder
To delete an entire folder, use the os.rmdir() method:
Example
Remove the folder "myfolder":
import os
os.rmdir("myfolder")Note: You can only remove empty folders.
❮ Previous
Next ❯