function GetUNCPath(const sPathName : string): string; var pcUNCPath : array [0..255] of char; iLength : cardinal; begin iLength := 256; if WNetGetConnection(PChar(LeftStr(sPathName, 2)), pcUNCPath, iLength) = 0 then Result := pcUNCPath; end;