My directories have the following Format:
Inside the home directory, there are two directories: archive and production.
While inside the production directory I want to write a command to make a directory inside the archive directory.
Whats the best way to do this?
Thanks in advance
Use a relative path:
On Windows, from \home
or
md ..\archive\newfolder
On *nix, from /home
..
means parent (up one level), and the parent (one level up) from \home\production is \home