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
#1
Hello, I want the script to go through the entire folder and only list the files which are neither Zip or Rar files

but when I use this code, it just goes through the entire folder listing all the files, what am i doing wrong?

import zipfile, os, rarfile, unicodedata

from rarfile import RarFile
rootFolder = u"C:/Users/user/Desktop/archives/"

from zipfile import ZipFile
rootFolder = u"C:/Users/user/Desktop/archives/"

zipfiles = [os.path.join(rootFolder, f) for f in os.listdir(rootFolder)]
[print(i) for i in zipfiles if not isinstance(i, ZipFile) and not isinstance(i, RarFile)]
Reply


Messages In This Thread
how to check for file type in a folder - by SoulsKeeper - Sep-15-2018, 08:47 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Compare folder A and subfolder B and display files that are in folder A but not in su Melcu54 3 592 Jan-05-2024, 05:16 PM
Last Post: Pedroski55
  Reading a file name fron a folder on my desktop Fiona 4 939 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,518 Aug-25-2022, 08:19 PM
Last Post: deanhystad
  Function not executing each file in folder mathew_31 9 2,314 Aug-22-2022, 08:40 PM
Last Post: deanhystad
  check if a file exist on the internet and get the size kucingkembar 6 1,825 Apr-16-2022, 05:09 PM
Last Post: kucingkembar
  Trying to determine attachment file type before saving off.. cubangt 1 2,185 Feb-23-2022, 07:45 PM
Last Post: cubangt
  Dynamic File Name to a shared folder with open command in python sjcsvatt 9 6,084 Jan-07-2022, 04:55 PM
Last Post: bowlofred
  Code to check folder and sub folders for new file and alert fioranosnake 2 1,964 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,547 Dec-18-2021, 09:32 PM
Last Post: Larz60+
  How to import file and function in another folder SriRajesh 1 3,202 Dec-18-2021, 08:35 AM
Last Post: Gribouillis

Forum Jump:

User Panel Messages

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