Python Forum
how to check for file type in a folder
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
how to check for file type in a folder
#3
ZipFile is a class for reading or writing zip files. Your zipfiles list is a list of strings that are file paths. They're instances of str, not ZipFile. I would normally do this by checking the extension of the paths in zipfiles (if i[-3:] not in ('zip', 'rar')). If you are worried that some have the wrong extension, you would have to open them up iwht the ZipFile and RarFile classes, and see if there are errors trying to read them.

Edit: Dead_Eye beat me with a much better explanation.
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply


Messages In This Thread
RE: how to check for file type in a folder - by ichabod801 - Sep-15-2018, 01:27 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Delete file with read-only permission, but write permission to parent folder cubei 6 22,355 Jun-01-2024, 07:22 AM
Last Post: Eleanorreo
  Compare folder A and subfolder B and display files that are in folder A but not in su Melcu54 3 728 Jan-05-2024, 05:16 PM
Last Post: Pedroski55
  Reading a file name fron a folder on my desktop Fiona 4 1,092 Aug-23-2023, 11:11 AM
Last Post: Axel_Erfurt
  please check this i wanna use a csv file as a graph xCj11 5 1,632 Aug-25-2022, 08:19 PM
Last Post: deanhystad
  Function not executing each file in folder mathew_31 9 2,515 Aug-22-2022, 08:40 PM
Last Post: deanhystad
  check if a file exist on the internet and get the size kucingkembar 6 1,920 Apr-16-2022, 05:09 PM
Last Post: kucingkembar
  Trying to determine attachment file type before saving off.. cubangt 1 2,294 Feb-23-2022, 07:45 PM
Last Post: cubangt
  Dynamic File Name to a shared folder with open command in python sjcsvatt 9 6,444 Jan-07-2022, 04:55 PM
Last Post: bowlofred
  Code to check folder and sub folders for new file and alert fioranosnake 2 2,078 Jan-06-2022, 05:03 PM
Last Post: deanhystad
  Compare filename with folder name and copy matching files into a particular folder shantanu97 2 4,717 Dec-18-2021, 09:32 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020