Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

get the name of all files in a computer in python

import glob

print('Inside current directory')
files = glob.glob("D:**",recursive=True)
for item in files:
    print(item)
    
Source by www.alixaprodev.com #
 
PREVIOUS NEXT
Tagged: #files #computer #python
ADD COMMENT
Topic
Name
1+2 =