vote up 2 vote down star

I am writing a script to run under the korn shell on AIX. I'd like to use the mkdir command to create a directory. But the directory may already exist, in which case I don't want to do anything. So I want to either test to see that the directory doesn't exist, or suppress the "File exists" error that mkdir throws when it tries to create an existing directory.

Any thoughts on how best to do this?

flag

6 Answers

vote up 10 vote down check

Try mkdir -p:

mkdir -p foo

Note that this will also create any intermediate directories that don't exist; for instance,

mkdir -p foo/bar/baz

will create directories foo, foo/bar, and foo/bar/baz if they don't exist.

If you want an error if parent directories don't exist, but want to create the directory if it doesn't exist, you can test for the existence of the directory first:

[ -d foo ] || mkdir foo
link|flag
Thanks - I didn't realize -p would help me there. – Spike Williams Apr 27 at 14:52
+1 for a nice all around explanation – alkar Apr 27 at 15:01
vote up 2 vote down

Use the -p flag.

man mkdir
mkdir -p foo
link|flag
vote up 5 vote down

This should work:

$ mkdir -p dir

or:

if [[ ! -e $dir ]]; then
    mkdir $dir
elif [[ ! -d $dir ]]; then
    echo "$dir already exists but is not a directory" 1>&2
fi

which will create the directory if it doesn't exist, but warn you if the name of the directory you're trying to create is already in use by something other than a directory.

link|flag
I don't think there's a -d operator in korn, rather -e is used for both files / directories and just checks existence. Also, they all return 0 upon success, so ! is redundant. Correct me if I'm wrong. – alkar Apr 27 at 14:57
1  
wrong on both counts, AFAIK. tests return true on success, and -d exists too (at least on MacOS X) – Alnitak Apr 27 at 14:58
indeed you are right on both accounts and I'm wrong :P been a long time since I used ksh, thanks for making me look it up hehe +1 – alkar Apr 27 at 15:14
Should that "end" statement be an "fi"? – Spike Williams Apr 27 at 15:29
@spike - yes, fixed... – Alnitak Apr 27 at 16:02
vote up 2 vote down

Or if you want to check for existence first:

if [[ ! -e /path/to/newdir ]]; then
            mkdir /path/to/newdir
fi

-e is the exist test for korn shell.

You can also try googling a korn shell manual.

link|flag
AFAIK this test needs negating. – Alnitak Apr 27 at 15:00
vote up 1 vote down

Just mkdir again... if it already exsits... so what?

link|flag
1  
Functionally, it doesn't matter, but I didn't want the clutter of an error message in my output. – Spike Williams Apr 27 at 14:55
Ahh, ok. that makes sense. – phillc Apr 27 at 15:29
So you redirect stderr, as in Pax's answer. – skiphoppy Jun 26 at 18:03
vote up 2 vote down

The old tried and true

mkdir /tmp/qq >/dev/null 2>&1

will do what you want with none of the race conditions many of the other solutions have.

Sometimes the simplest (and ugliest) solutions are the best :-)

link|flag

Your Answer

Get an OpenID
or

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