Create directory on...
 

Create directory only if it is not already exist

2 Posts
1 Users
0 Likes
955 Views
Avatar of admin
Posts: 77
Admin
Topic starter
(@mjv119gmail-com)
Estimable Member
Joined: 9 years ago

Often we use to create a folder in a directory which contains lot of sub directories. When we try to create a directory, we will get the below error message if that directory is already present.

mkdir: Failed to make directory “test”; File exists

I want to know how to hide the above error message and to create folder only if its not already exist. If its already exist then it should ignore that folder.

Reply
1 Reply
Avatar of admin
Posts: 77
Admin
Topic starter
(@mjv119gmail-com)
Estimable Member
Joined: 9 years ago

Use -p option with mkdir command. This will omit if that directory is already present.

mkdir -p dir

It will not threw error message even that directory is already present. It will ignore that directory.

Reply

Leave a reply

Author Name

Author Email

Title *

 
Preview 0 Revisions Saved
Share: