CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 1 of 1

Threaded View

  1. #1
    Join Date
    May 2000
    Location
    KY, USA
    Posts
    18,652

    Windows SDK Application: How to get the system directory?

    Q: How to get the system directory?

    A:

    Code:
    TCHAR szDirectory[MAX_PATH] = "";
    
    UINT Bytes = ::GetSystemDirectory(szDirectory, sizeof(szDirectory));
    if(!Bytes)
      // Error -> call '::GetLastError()'
    else if(Bytes > sizeof(szDirectory))
      // Buffer too small
    else
      // Success
    Last edited by Andreas Masur; July 24th, 2005 at 04:58 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured