Welcome to the Tweaking4All community forums!
When participating, please keep the Forum Rules in mind!
Topics for particular software or systems: Start your topic link with the name of the application or system.
For example “MacOS X – Your question“, or “MS Word – Your Tip or Trick“.
Please note that switching to another language when reading a post will not bring you to the same post, in Dutch, as there is no translation for that post!
[Solved] Linux/Mac/QNAP - Create directory if it does not yet exist
(@hans)
Famed Member Admin
Joined: 11 years ago
Posts: 2791
Topic starter
August 8, 2023 6:33 AM
Sometimes my scripts depend on a directory to exists and I'd like to have it created if it does not exist.
For Linux (including Mac, QNAP and others) you can use the "-p" option:
mkdir -p foo
Note that this will also create any intermediate directories that do not exist.
So for instance this
mkdir -p foo/bar/banana
will create directories foo, foo/bar, and foo/bar/banana if they don't exist.