I want to programmatically find out if my application is running from a network drive. What is the simplest way of doing that? It should support both UNC paths (\\127.0.0.1\d$) and mapped network drives (Z:).
| ||||
|
feedback
|
|
This is for mapped drive case. You can use the
Complete method and Sample Code.
| ||||
|
feedback
|
| ||||
|
feedback
|
|
In case using UNC path it is quitely simple - examine host name in UNC and test that it is localhost(127.0.0.1, ::1, hostname, hostname.domain.local, ip-addresses of workstation) or not. If the path is not UNC - extract the drive letter from path and test the DriveInfo class for its type | |||
|
feedback
|
|
This is my current method of doing this, but it feels like there should be a better way.
| |||
|
feedback
|
| ||||
|
feedback
|