Answers for "python list of possible paths"

0

python list of possible 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

Code answers related to "python list of possible paths"

Python Answers by Framework

Browse Popular Code Answers by Language