List Directory Contents
import os
get_directory = input("Enter path : ")
d = os.listdir(get_directory)
for dir in d:
currrent_path = os.path.abspath(dir)
print(currrent_path)
Last updated
Was this helpful?
import os
get_directory = input("Enter path : ")
d = os.listdir(get_directory)
for dir in d:
currrent_path = os.path.abspath(dir)
print(currrent_path)
Last updated
Was this helpful?