.net 에서 UNC 경로가 local 인지 remote 인지 확인할려면 System.Uri  를 이용하는 방법이 있다.

ex)
string uriString = "//test/abcd";
Uri uri = new Uri(uriString);
if (uri.IsLoopback)
{ // local }
else
{ // remote }
728x90

+ Recent posts