Error will occur if a parent folder does not exist for the folder that I would like to create.
mkdir C:\project\temp
could not create directory C:\project\temp
This is not well documented in the help file though.
To solve this problem, just create directories step-by-step:
mkdir c:\project
mkdir c:\project\temp
mkdir C:\project\temp
could not create directory C:\project\temp
This is not well documented in the help file though.
To solve this problem, just create directories step-by-step:
mkdir c:\project
mkdir c:\project\temp
Comment