Share
Working with files
Question
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
How to separate all files with a specific extension(.csv, .txt) in a directory using python?
Answer ( 1 )
Method 1
import os
for root, dirs, files in os.walk(directory):
for file in files:
if file.endswith(‘.txt’):
print file
Method 2
import os
path = ‘mypath/path’
files = os.listdir(path)
files_txt = [i for i in files if i.endswith(‘.txt’)]