Answers for "how to get the directories in a folder python"

2

python get dir

import os 
#full path
dir_path = os.path.dirname(os.path.realpath(__file__))

#current dir
cwd = os.getcwd()
Posted by: Guest on December-25-2020
0

python find dir

import os.path
from os import path

def main():

	print ("Is it File?" + str(path.isfile('guru99.txt')))
	print ("Is it File?" + str(path.isfile('myDirectory')))
if __name__== "__main__":
	main()
Posted by: Guest on June-11-2021

Code answers related to "how to get the directories in a folder python"

Python Answers by Framework

Browse Popular Code Answers by Language