import os
defget_filepaths(directory):"""
This function will generate the file names in a directory
tree by walking the tree either top-down or bottom-up. For each
directory in the tree rooted at directory top (including top itself),
it yields a 3-tuple (dirpath, dirnames, filenames).
"""
file_paths =[]# List which will store all of the full filepaths.# Walk the tree.for root, directories, files in os.walk(directory):for filename in files:# Join the two strings in order to form the full filepath.
filepath = os.path.join(root, filename)
file_paths.append(filepath)# Add it to the list.return file_paths # Self-explanatory.# Run the above function and store its results in a variable.
full_file_paths = get_filepaths("/Users/johnny/Desktop/TEST")
import os
folder_path ="./folder-path"for path, currentDirectory, files in os.walk(folder_path):forfilein files:ifnotfile.startswith("."):print(os.path.join(path,file))
import os
# returns name of all files & directory exist in current location
files_dir = os.listdir('./blogs')# './blogs' is the directory in the current locationprint(files_dir)
only_files =[]for i in files_dir:if os.path.isfile('./blogs/'+i):
only_files.append(i)
only_dir =[]for i in files_dir:if os.path.isdir('./blogs/'+i):
only_dir.append(i)print('-'*15)print(only_files)# prints all filesprint('-'*15)print(only_dir)# prints all directories"""
OUTPUT:
['1.txt', '2.txt', '3.txt', '4.txt', '5.txt', '6.txt', '7.txt', '8.txt', 'Test Directory 1', 'Test Directory 2']
---------------
['1.txt', '2.txt', '3.txt', '4.txt', '5.txt', '6.txt', '7.txt', '8.txt']
---------------
['Test Directory 1', 'Test Directory 2']
"""
"""Examples from SO (see link)
Obviously the directory can be any directory with 'read access' (not only `os.curdir`)
Doc about the `os` module: https://docs.python.org/3/library/os.html
"""# /! Return a `filter` object, not a `list`import os
files_ex1 =filter(os.path.isfile, os.listdir(os.curdir))# List comprehension
files_ex2 =[f for f in os.listdir(os.curdir)if os.path.isfile(f)]
from os import walk
from os.path import join
path ='C:'# Creates list of the items in directories (+subdirectories)
items =[join(root,file)for root, subdirs, files in walk(path)forfilein files]
import shutil
from fpdf import FPDF
import os
from os import listdir
from os.path import isfile, join
import glob
import re
print("Paste in the directory path :")
s=input()
all_dir=glob.glob(s)print(all_dir)