Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

list all files in a folder

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)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #list #files #folder
ADD COMMENT
Topic
Name
2+5 =