| 1. |
Solve : subdirectories? |
|
Answer» please explaing the significance of the "." and ".." that appear in all subdirectories on a disk Why does anyone want to know this esoteric stuff? Not so esoteric actually. Many coders use relative paths in their batch files. Many installers also use relative paths based on what the user types in for the install directory. Powershell also uses a relative paths owing to the FACT that the current directory is not searched by default. If the current directory contains your Powershell script, you must use .\ to force a search of the current directory or type out a fully qualified path name. |
|