vote up 0 vote down star

Is there an api in windows that retrieves the server name from a UNC path ? (\\server\share)
Or do i need to make my own ?
I found PathStripToRoot but it doesn't do the trick.

flag

39% accept rate

3 Answers

vote up 0 vote down

I don't know if there is a specific API for this, I would just implement the simple string handling on my own (skip past "\\" or return null, look for next \ or end of string and return that substring) possibly calling PathIsUNC() first

link|flag
that's what i did for now, but was checking if there was one in case there are some exceptions – CiNN May 24 at 2:29
What about if the <servername> is actually an ip address and not a computer name? – Zerofiz Jun 10 at 3:29
the ip address will not contain a slash so as long as you are only looking for a slash, no issue. – benPearce Jun 10 at 3:39
Not sure if it is documented, but PathIsUNCServer() does seem to exist – Anders Sep 3 at 18:20
vote up 0 vote down

I don't know of a Win32 API for parsing a UNC path; however you should check for:

  • \\computername\share
  • \\?\UNC\computername\share (people use this to access long paths > 260 chars)
  • You can optionally also handle this case: smb://computername/share and this case hostname:/directorypath/resource

Read here for more information

link|flag
vote up 0 vote down

This is untested, but maybe a combination of PathIsUNC() and PathFindNextComponent() would do the trick.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.