list all files in a directory code example

Example 1: python list all files in directory

from os import listdir
from os.path import isfile, join
onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))]

Example 2: os list all files in one dir

import glob
print(glob.glob("/home/adam/*.txt"))

Example 3: python list all files in directory

import os
 arr = os.listdir()
 print(arr)
 
 >>> ['$RECYCLE.BIN', 'work.txt', '3ebooks.txt', 'documents']

Example 4: list all files in a directory and subdirectory linux

find . -type f -follow -print

Example 5: cmd files in directory

Enter “dir” (without quotes) to list the files and folders contained in the folder.

Tags:

Misc Example