up vote 3 down vote favorite
share [g+] share [fb]

In a C++ Windows (XP and NT, if it makes a difference) application I'm working on, I need to get the network name associated with the computer the code is executing on, so that I can convert local filenames from C:\filename.ext to \\network_name\C$\filename.ext. How would I do this?

Alternatively, if there's a function that will just do the conversion I described, that would be even better. I looked into WNetGetUniversalName, but that doesn't seem to work with local (C drive) files.

link|improve this question

67% accept rate
+1 to you. First time my google result was a Stack Overflow post. Thanks all. – theschmitzer Dec 8 '08 at 20:17
feedback

3 Answers

up vote 5 down vote accepted

You'll want Win32's GetComputerName:

http://msdn.microsoft.com/en-us/library/ms724295(VS.85).aspx

link|improve this answer
feedback

There are more than one alternatives:

a. Use Win32's GetComputerName() as suggested by Stu.
Example: http://www.techbytes.ca/techbyte97.html
OR
b. Use the function gethostname() under Winsock. This function is cross platform and may help if your app is going to be run on other platforms besides Windows.
MSDN Reference: http://msdn.microsoft.com/en-us/library/ms738527(VS.85).aspx
OR
c. Use the function getaddrinfo().
MSDN reference: http://msdn.microsoft.com/en-us/library/ms738520(VS.85).aspx

link|improve this answer
feedback

I agree with Pascal on using winsock's gethostname() function. Here you go:

#include <winsock2.h> //of course this is the way to go on windows only

void GetHostName(std::string& host_name)
{
    WSAData wsa_data;
    int ret_code;

    char buf[MAX_PATH];

    WSAStartup(MAKEWORD(1, 1), &wsa_data);
    ret_code = gethostname(bufe, MAX_PATH);

    if (ret_code == SOCKET_ERROR)
    	host_name = "unknown"
    else
    	host_name = host_name;

    WSACleanup();
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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