dir list all files in subdirectories code example
Example 1: get list of all files in folder and subfolders python
for path, subdirs, files in os.walk(root):
for name in files:
print os.path.join(path, name)
Example 2: list all files in a directory and subdirectory linux
find . -type f -follow -print
Example 3: bash list all files in directory and subdirectories
# Bash-specific
# syntax
ls -R
# example
ls -R *hotographi*
Example 4: dir list all files in subdirectories
dir *.txt *.doc # filter by extension (both doc and txt)
dir /a:-d # files only (no subfolders)
dir /s # current directory and subfolders content
dir /s /a:-d # files only (including subfolders)
dir > myfile.txt # stored in myfile.txt (dir /s > myfile.txt with subfolders)
dir /o:[sortorder] # example: dir /o:-s (sort by decreasing size)
N : By name (alphabetic).
S : By size (smallest first).
E : By extension (alphabetic).
D : By date/time (oldest first).
- : Prefix to reverse order.