What command can be used to check if a directory does or does not exist, within a shell script?

link|improve this question

@Jens, Why did you edit the question? it target the BASH shell? – gdoron May 12 at 20:52
Because testing for a directory is done the same in all shells. It is not a bash specific question. In the edited form, both question and answers are useful for a much wider audience -- all shell programmers. – Jens May 12 at 21:20
@Jens. Worth keeping the linux\ unix tag. I can't argue with the reason as I'm not a shell master... I hope you're right. this question has 250K views, so a mistake here is a shame. – gdoron May 12 at 22:25
Perhaps posix would be a suitable tag? – Grundlefleck May 12 at 22:53
@Grundlefleck That would be my preference, too. – Jens May 13 at 10:14
feedback

12 Answers

up vote 420 down vote accepted

To check if a directory exists in a 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.

link|improve this answer
4  
If you want to play it safe with the GNU tools, use of -- is highly recommended (end-of-options marker). Otherwise, if your variable contains something that looks like an option, the script'll fail just as with spaces. – Marc Mutz - mmutz Jul 21 '09 at 16:36
39  
It might be worth mentioning that [ ... ] is syntactic sugar for the 'test' command. Useful information because without it you might not know you can do 'man test' to get the documentation. – Bryan Oakley Aug 17 '09 at 15:54
1  
For modern versions of bash, ksh, etc. [...] is a builtin – fpmurphy Mar 24 '11 at 14:22
1  
@Costi It's there to be found and improved upon, no matter the rep. Thanks! :) – Grundlefleck Jul 29 '11 at 8:27
5  
One thing to keep in mind: [ ! -d "$DIRECTORY" ] will be true either if $DIRECTORY doesn't exist, or if does exist but isn't a directory. Consider something like if [ ! -d "$DIRECTORY" ] ; then mkdir "$DIRECTORY" ; fi; this will fail if "$DIRECTORY" is a file. (Of course you should check whether mkdir succeeded anyway; there are a number of reasons it can fail.) – Keith Thompson Aug 9 '11 at 23:46
show 1 more comment
feedback

I find the double-bracket version of test makes writing logic tests more natural:

if [[ -d "${DIRECTORY}" && ! -L "${DIRECTORY}" ]] ; then
    echo "It's a bona-fide directory"
fi

And I see that the double-bracket operator is often faster.

link|improve this answer
Thanks for the hint with double brackets, it's great! – furtelwart Jul 29 '10 at 6:07
for if [[ -d "$TARFILE" ]] I'm getting [[: not found – TheVillageIdiot Jun 19 '11 at 14:48
ditto [[: not found – Hedgehog Jul 1 '11 at 20:00
2  
@TheVillageIdiot and @Hedgehog, are you using bash shell? The double bracket isn't universally supported. Here's a SO answer on that point: stackoverflow.com/questions/669452/… – yukondude Jul 2 '11 at 14:54
feedback

Grundlefleck wrote:

if [ -d $DIRECTORY ]; then

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 $DIRECTORY set to "My M0viez" and you script will blow up. You don't want that. So use

if [ -d "$DIRECTORY" ]; then
    # Will enter here if $DIRECTORY exists, even if it contains spaces
fi

instead.

link|improve this answer
1  
Another reason to use double quotes is in case $DIRECTORY is not set for some reason. – Jon Ericson Sep 15 '08 at 22:41
Thanks, I'll incorporate that into my answer. – Grundlefleck Sep 16 '08 at 11:22
feedback

@ Grundlefleck

Note the -d test can produce some surprising results:

$ ln -s tmp/ t
$ if [ -d t ]; then rmdir t; fi
rmdir: directory "t": Path component not a directory

File under: "When is a directory not a directory?" The answer: "When it's a symlink to a directory." A slightly more thorough test:

if [ -d t ]; then 
   if [ -L t ]; then 
      rm t
   else 
      rmdir t
   fi
fi

(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.)

link|improve this answer
Thanks Jon, good point. I have taken it on board and included it in my own answer. Hope you don't mind the alterations! – Grundlefleck Sep 12 '08 at 21:30
feedback
if [ -d "$Directory" -a -w "$Directory" ]
then
    #Statements
fi

The above code checks if the directory exists and if it is writable.

link|improve this answer
feedback

or even shorter: [ -d / ] && echo "Yes"

link|improve this answer
9  
Even shorter: echo "Yes". [ -d / ] should always be true or you will have much bigger problems. ;-) – Jon Ericson Sep 12 '08 at 22:27
feedback

Great solutions out there, but ultimately every script will fail if you're not in the right directory. So code like this:

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

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:

dir=" "
echo "Input directory name to search for:"
read dir
find $HOME -name $dir -type d

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.

link|improve this answer
3  
I'd be offended if a program went looking through my entire hard drive to find a directory rather than just politely looking in my current working directory or using the absolute path I give it. What you've suggested might be nice for a tool named locate but not nice for anything else... – sarnold Feb 1 at 9:29
feedback

You could use the find command

found=`find -type d -name "myDirectory"`
if [ -n "$found"]
then
    # found is not empty
fi
link|improve this answer
1  
Watch out! find will recurse through subdirectories, which might not be what you want. See <beta.stackoverflow.com/questions/27077/…;. Also, the first argument to find must be the path list. – Jon Ericson Sep 12 '08 at 20:33
feedback

Or for something completely useless:

[ -d . ] || echo "No"
link|improve this answer
Why was this down voted? Seems like a great little one liner. – erikcw Nov 9 '11 at 17:25
This helped me. I was looking for a minimalist one-liner. – Victor Piousbox Jan 22 at 1:02
feedback
if [ -d "$DIRECTORY" ]; then
    # Will enter here if $DIRECTORY exists
fi

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:

if [ -d "$DIRECTORY" ] && [ -x "$DIRECTORY" ] ; then
    # ... to go to that directory (even if DIRECTORY is a link)
    cd $DIRECTORY
    pwd
fi

if [ -d "$DIRECTORY" ] && [ -w "$DIRECTORY" ] ; then
    # ... to go to that directory and write something there (even if DIRECTORY is a link)
    cd $DIRECTORY
    touch foobar
fi
link|improve this answer
1  
I think that the original comment indicated that the control of the script would enter there, not that the script would enter that directory. – dreamlax Mar 18 '10 at 11:00
@TheBear: dreamlax is correct, I'll try to make that clearer in the answer. – Grundlefleck Mar 18 '10 at 11:49
feedback

The ls command in conjunction with -l (long listing) option returns attributes information about files and directories.
In particular the first character of ls -l output it is usually a d or a - (dash). In case of a d the one listed is a directory for sure.

The following command in just one line will tell you if the given ISDIR variable contains a path to a directory or not:

[[ $(ls -ld "$ISDIR" | cut -c1) == 'd' ]] && echo "YES, $ISDIR is a directory." || echo "Sorry, $ISDIR is not a directory"

Practical usage:

    [claudio@nowhere ~]$ ISDIR="$HOME/Music" 
    [claudio@nowhere ~]$ ls -ld "$ISDIR"
    drwxr-xr-x. 2 claudio claudio 4096 Aug 23 00:02 /home/claudio/Music
    [claudio@nowhere ~]$ [[ $(ls -ld "$ISDIR" | cut -c1) == 'd' ]] && echo "YES, $ISDIR is a directory." || echo "Sorry, $ISDIR is not a directory"
    YES, /home/claudio/Music is a directory.

    [claudio@nowhere ~]$ touch "empty file.txt"
    [claudio@nowhere ~]$ ISDIR="$HOME/empty file.txt" 
    [claudio@nowhere ~]$ [[ $(ls -ld "$ISDIR" | cut -c1) == 'd' ]] && echo "YES, $ISDIR is a directory." || echo "Sorry, $ISDIR is not a directoy"
    Sorry, /home/claudio/empty file.txt is not a directory
link|improve this answer
feedback

Actually, you should use several tools to get a bullet proof approach:

DIR_PATH=`readlink -f "${the_stuff_you_test}"` # get rid of symlinks and get abs path
if [[ -d "${DIR_PATH}" ]] ; then # now you're testing
    echo "It's a dir";
fi

No need to worry about spaces and special characters as long as you use "${}"

Note that [[]] is not as portable as [] but since most people work with modern versions of bash (since after all, most people don't even work with command line :-p), the benefit is greater than the trouble.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.