Answers for "how to gather files with python"

0

list directory in python

from os import listdir

## Prints the current directory as a list (including file types)
print(os.listdir())
Posted by: Guest on April-23-2020
0

how to open folder in python

import webbrowser

path = "C:/Users/Username/PycharmProjects"
webbrowser.open(path) # Opens 'PycharmProjects' folder.
Posted by: Guest on January-05-2021

Code answers related to "how to gather files with python"

Python Answers by Framework

Browse Popular Code Answers by Language