Answers for "python find folder"

7

get current working directory python

# print current working directory in python
import os
cwd = os.getcwd()
print(cwd)
Posted by: Guest on November-25-2020
2

python find specific file in directory

text_files = glob.glob(path + "/**/*.txt")
Posted by: Guest on October-08-2020
0

find directory in directory python

import os

def listdir_r(dirpath):
  	"""lists directories and sub-directories recursively. 
    """
    paths=[]
    paths.append(dirpath)
    for path in os.listdir(dirpath):
        rpath = os.path.join(dirpath, path)
        if os.path.isdir(rpath):
            subdirs = listdir_r(rpath)
            if not subdirs == []:
                paths.extend(subdirs)
    return paths

# print the list of sub-directories
print(listdir_r('./'))
Posted by: Guest on June-09-2021
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

Python Answers by Framework

Browse Popular Code Answers by Language