How to list only text files in a directory using python

0 votes

I am trying to list only text files in a directory (files with .txt extension). I got as far as listing only files and ignore directories but I am stuck.

from os import listdir
print(f for f in os.listdir('/home') if path.isfile(f))

How to list only the text files?

Feb 4, 2019 in Python by Sahil
2,423 views

1 answer to this question.

0 votes

Well, you are using a complex way. You can do it in a simple way. Try this:

import os
os.system("ls *.txt")
answered Feb 4, 2019 by Omkar
• 69,210 points

Related Questions In Python

0 votes
2 answers

How can I rename multiple files in a certain directory using Python?

import os from optparse import OptionParser, Option class MyOption ...READ MORE

answered Jul 29, 2020 in Python by The real slim shady
4,422 views
0 votes
1 answer

How to save one list in a text file in Python?

Hi@akhtar, There is no inbuilt function available to ...READ MORE

answered Jun 25, 2020 in Python by MD
• 95,440 points
3,374 views
0 votes
1 answer

Is there a way to store this text in a list using selenium (python)

Try using this code snippet to resolve ...READ MORE

answered Aug 24, 2020 in Python by Carlos
1,168 views
0 votes
1 answer

How to Print a List in Python

ou are using Python 2.x syntax with ...READ MORE

answered Aug 31, 2018 in Python by charlie_brown
• 7,720 points
761 views
0 votes
2 answers
+1 vote
2 answers

how can i count the items in a list?

Syntax :            list. count(value) Code: colors = ['red', 'green', ...READ MORE

answered Jul 7, 2019 in Python by Neha
• 330 points

edited Jul 8, 2019 by Kalgi 4,023 views
0 votes
1 answer
+5 votes
6 answers

Lowercase in Python

You can simply the built-in function in ...READ MORE

answered Apr 11, 2018 in Python by hemant
• 5,790 points
3,420 views
0 votes
1 answer

How to list only files in a directory?

Before printing, you can use a check ...READ MORE

answered Feb 4, 2019 in Python by Omkar
• 69,210 points
375 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP