Answers for "check if directory exists"

81

python check if file exists

import os

os.path.exists("file.txt") # Or folder, will return true or false
Posted by: Guest on February-14-2020
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
8

shell script to check the directory exists

Directory="/opt"
if [ -d "$Directory" ];
then
	echo -e "it's exits\n"
fi
### To check if it's not exists
if [ ! -d "$Directory" ];
then 
	echo -e "It's not there\n"
fi
Posted by: Guest on December-31-2020
8

linux command if directory exists

DIR="/etc/httpd/"
if [ -d "$DIR" ]; then
  ### Take action if $DIR exists ###
  echo "Installing config files in ${DIR}..."
else
  ###  Control will jump here if $DIR does NOT exists ###
  echo "Error: ${DIR} not found. Can not continue."
  exit 1
fi
Posted by: Guest on October-22-2020
1

Check is directory exist shell

DIR="/etc/httpd/"
if [ -d "$DIR" ]; then
  # Take action if $DIR exists. #
  echo "Installing config files in ${DIR}..."
fi
Posted by: Guest on June-02-2021

Code answers related to "check if directory exists"

Python Answers by Framework

Browse Popular Code Answers by Language