0
How to remove created files?
I've a code what creates a copy files. How can I remove its? https://code.sololearn.com/cMz46Kkm7txq/?ref=app
2 Réponses
+ 2
You can simply use os.remove() or shutil.rmtree(). Be careful with these functions.
0
Can I remove files only with '.copy' name?