Answers for "linux check if directory exist"

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
3

java check if directory exists

Path path = ...;

if (Files.exists(path)) {
    // ...
}
Posted by: Guest on April-27-2020

Code answers related to "linux check if directory exist"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language