I have a py script that processes files with extension ‘.hgx’.Example : test.hgx
( there are many such files with extension hgx)
The script processes the test.hgx and creates a new test_bac.hgx and on re-run it creates test_bac_bac.hgx. So everytime running the script creates a file with ‘_bac’.
Is there some solution that I can use in my script that can delete all the existing ‘_bac’ and ‘_bac_bac…’ files before start of the actual code.
I am already using glob.glob function
for hgx in glob.glob("*.hgx"):
Can I use this function to delete these files ‘X_bac.hgx’ and other _bac_bac..hgx files?
Any help/idea would be appreciated.
Thanks
1 Answer