Answers for "python list of deeper paths"

0

python list of deeper paths

#see a list of all available paths
import os
os.listdir(path='.') #Where '.' denotes the same location. For subfolders:
os.listdir(path='./subfoldername' # you can go deeper and deeper using the same method
Posted by: Guest on February-01-2022

Python Answers by Framework

Browse Popular Code Answers by Language