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.
|
|
|
|
|
|
|
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 |
||||||||
|
|
|
I don't know of a Win32 API for parsing a UNC path; however you should check for:
|
||
|
|
|
|
This is untested, but maybe a combination of PathIsUNC() and PathFindNextComponent() would do the trick. |
||
|
|
