Answers for "the "" directory does not exist."

1

check if a directory doesn't exist

PATH="./foo"
if [[ ! -d "$PATH" ]] ; then echo "$PATH not a dir" ; fi
Posted by: Guest on April-16-2021
-1

Create directory if it does not exist

string currentPath = Directory.GetCurrentDirectory();
if (!Directory.Exists(Path.Combine(currentPath, "ACH")))
    Directory.CreateDirectory(Path.Combine(currentPath, "ACH"));
//at this point your folder should exist
Posted by: Guest on August-12-2021

Code answers related to "the "" directory does not exist."

Browse Popular Code Answers by Language