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

Hybrid View

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

    Windows SDK Application: How to set the current working directory?

    Q: How to set the current working directory?

    A:

    Code:
    if(::SetCurrentDirectory("c:\\test") == FALSE)
      // Error -> call 'GetLastError()'
    Last edited by Andreas Masur; July 24th, 2005 at 04:52 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