Why does Directory.CreateDirectory throw a DirectoryNotFoundException when attempting to create the following path?
"c:\\temp\\aips\\data\\prn"
with message indicating it could not find a part of the path "c:\"
.
Yet, if passed the following path "c:\\temp\\aips\\data\\power"
, it returns successfully.
The paths are copied directly from the Visual Studio debugger hence the back slash delimiters.
On my system, the folder c:\temp\aips\data
already exists.