Custom Icon
Posted: Tue Nov 26, 2013 9:59 pm
Hi all,
Is it possible to add "clean data folder" as an icon?
cheers
Dave.
Is it possible to add "clean data folder" as an icon?
cheers
Dave.
Code: Select all
import sys, os, shutil
path= "your path"
os.remove(path) #will remove a file.
os.rmdir(path) #will remove an empty directory.
shutil.rmtree(path) #will delete a directory and all its contents.