Answers for "find python file directory"

8

get directory of file python

import os 
dir_path = os.path.dirname(os.path.realpath(__file__))
Posted by: Guest on April-03-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 "find python file directory"

Python Answers by Framework

Browse Popular Code Answers by Language