Horje
linux command create folder if not exist Code Example
linux command create folder if not exist
mkdir -p foo
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




Shell

Related
linux redirect everything (stdout and stderr) to file Code Example linux redirect everything (stdout and stderr) to file Code Example
terminal get size of file Code Example terminal get size of file Code Example
shell command read first lines Code Example shell command read first lines Code Example
bash curl weather report Code Example bash curl weather report Code Example
bash curl forecast Code Example bash curl forecast Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9