What command can be used to check if a directory does or does not exist, within a Bash shell script?
|
feedback
|
|
To check if a directory exists in a bash shell script you can use the following:
if [ -d "$DIRECTORY" ]; then
# Control will enter here if $DIRECTORY exists
fi
Or to check if a directory doesn't exist:
if [ ! -d "$DIRECTORY" ]; then
# Control will enter here if $DIRECTORY doesn't exist
fi
However, as Jon Ericson points out (thanks Jon), subsequent commands may not work as intended if you do not take into account that a symbolic link to a directory will also pass this check. E.g. running this:
ln -s "$ACTUAL_DIR" "$SYMLINK"
if [ -d "$SYMLINK" ]; then
rmdir "$SYMLINK"
fi
Will produce the error message: rmdir: failed to remove `symlink': Not a directory So symbolic links may have to be treated differently, if subsequent commands expect directories:
if [ -d "$LINK_OR_DIR" ]; then
if [ -L "$LINK_OR_DIR" ]; then
# It is a symlink!
# Symbolic link specific commands go here
rm "$LINK_OR_DIR"
else
# It's a directory!
# Directory command goes here
rmdir "$LINK_OR_DIR"
fi
fi
Take particular note of the double-quotes used to wrap the variables, the reason for this is explained by 8jean in another answer. If the variables contain spaces or other unusual characters it will probably cause the script to fail. | |||||||||||||||||
feedback
|
|
I find the double-bracket version of
And I see that the double-bracket operator is often faster. | |||||||||||
feedback
|
|
Grundlefleck wrote:
Remember to always wrap variables in double quotes when interpolating them in a bash script. Kids these days grow up with the idea that they can have spaces and lots of other funny characters in their directory names. (Spaces! Back in my days, we didn't have no fancy spaces!) ... ;) One day, one of those kids will run your script with
instead. | |||||
feedback
|
|
Note the -d test can produce some surprising results:
File under: "When is a directory not a directory?" The answer: "When it's a symlink to a directory." A slightly more thorough test:
(I'd have made this a comment, since it's not really the right answer, just an elaboration on the right answer, but the comment box is far too constraining. Feel free to add this material to the answer itself.) | |||
feedback
|
The above code checks if the directory exists and if it is writable. | ||||
|
feedback
|
|
You could use the find command
| |||||
feedback
|
|
or even shorter: [ -d / ] && echo "Yes" | |||||
feedback
|
This is not completely true... If you want to go to that directory, you also needs to have the execute rights on the directory. Maybe you need to have write rights as well. Therfore:
| |||||||
feedback
|
|
Great solutions out there, but ultimately every script will fail if you're not in the right directory. So code like this:
will execute successfully only if at the moment of execution you're in a directory that has a subdirectory that you happen to check for. I understand the initial question like this: to verify if a directory exists irrespective of the user's position in the file system. So using the command 'find' might do the trick:
This solution is good because it allows the use of wildcards, a useful feature when searching for files/directories. The only problem is that, if the searched directory doesn't exist, the 'find' command will print nothing to stdout (not an elegant solution for my taste) and will have nonetheless a zero exit. Maybe someone could improve on this. | ||||
|
feedback
|
|
Or for something completely useless:
| |||||
|
feedback
|
|
Actually, you should use several tools to get a bullet proof approach:
No need to worry about spaces and special characters as long as you use Note that | |||
|
feedback
|
|
The The following command in just one line will tell you if the given
Practical usage:
| |||
|
feedback
|
|
No need to check to see if DIR or SYMLINK to issue separate RM or RMDIR commands. Just use rm -rf (-r recusively remove and -f means force, no prompts) I'd also check that you aren't attempting to remove "/" (root) or current directory. if [ -d "$DIR" ] && [ "$DIR" != "/" ] && [ "$DIR" != "." ] && [ "$DIR" != "./" ]; then rm -rf $DIR fi | |||||
feedback
|