Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python dir all files

import os

for root, dirs, files in os.walk("."):
    for filename in files:
        print(filename)
Source by stackabuse.com #
 
PREVIOUS NEXT
Tagged: #python #dir #files
ADD COMMENT
Topic
Name
4+8 =