Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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()
Source by www.guru99.com #
 
PREVIOUS NEXT
Tagged: #python #find #dir
ADD COMMENT
Topic
Name
9+9 =