Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import os
- nombre_archivos = [nombre for nombre in os.listdir('C:\\Windows')
- if os.path.isfile(os.path.join('C:\\Windows', nombre))]
- for nombre_archivo in nombre_archivos:
- print(nombre_archivo)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement