Program to delete all the zip files present in destination
Code to delete all the 'Zip' Files present in destination.
This code will help you to remove any files from the drive not just zip file. You will have to do little modification in the piece of code as per your requirement.
Before
After
Code
#Program to delete zip files present in destinationimport osdestination = 'F:/remove'def remove_zip_files(destination):for filename in os.listdir(destination):if filename.endswith('.zip'):print('Unlinking File'+filename)rem = destination+'/'+filenameprint(rem)os.unlink(rem)else:print('No Zip files found')remove_zip_files(destination)__author__ = "HEMANT KUMAR"
Comments
Post a Comment