Answers for "python check if folder"

21

python check if folder exists

import os
print(os.path.isdir("/home/el"))
print(os.path.exists("/home/el/myfile.txt"))
Posted by: Guest on June-20-2020
7

python how to see if file is directory

"""
Use os.path.isfile(some_string) to check if some_string is a file
Use os.path.isdir(some_string) to check if some_string is a directory
"""
import os

path = "C:/some directory/"
file = path + "file.txt"

print("variable path is a file:", os.path.isfile(path) )
print("variable path is a directory:", os.path.isdir(path) )

print()

print("variable file is a file:", os.path.isfile(file) )
print("variable file is a directory:", os.path.isdir(file) )
Posted by: Guest on March-27-2020
0

check if path is a folder python

import os

# check the if the path is a directory
print(os.path.isdir("path"))

# check if the path is a file
print(os.path.isfile("path"))
Posted by: Guest on August-13-2021

Code answers related to "python check if folder"

Python Answers by Framework

Browse Popular Code Answers by Language