ASAS
ASAS

Reputation: 51

How to only get files without extensions?

My problem is to get ONLY files without extensions. I mean - I have a dictionary and there are some files without extensions and some files with extensions (.xml, .csv, etc)

I want that my code would only read files without extensions.

Now, it's reading every file in the dictionary "Dir".

path = 'C:/Users/STJ2TW/Desktop/Dir/'
for filename in os.listdir(path):
    fullname = os.path.join(path, filename)

Thanks in advance!

Upvotes: 0

Views: 1030

Answers (2)

Said Amz
Said Amz

Reputation: 110

If there are no dots in your files, you can do :

path = 'C:/Users/STJ2TW/Desktop/Dir/'
for filename in os.listdir(path):
    if '.' not in filename:
        fullname = os.path.join(path, filename)
            

Upvotes: 0

Darshil Jani
Darshil Jani

Reputation: 860

You can split the filename using the splittext function and check for the ones which are not a directory and do not have an extension value (ext).

import os
path = os.getcwd()
for filename in os.listdir(path):
    if not os.path.isdir(filename): 
        (name, ext) = os.path.splitext(filename)
        if not ext:
            # Your code here

Upvotes: 4

Related Questions