Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. get the current working directory

get the current working directory

Scheduled Pinned Locked Moved C / C++ / MFC
c++tutorial
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    shiva shankar
    wrote on last edited by
    #1

    how to get the current working directory in MFC app Wizard (vc++), i have the code but it is working in Winconsole (vc++),but the same code is not working in MFC app Wizard, is there there any alternative code in MFC app wizard.. // #include #include #include void GetCurrentPath(char* buffer) { getcwd(buffer, _MAX_PATH); } void main() { char CurrentPath[_MAX_PATH]; GetCurrentPath(CurrentPath); printf("%s" , CurrentPath) ;//using messagebox instead of printf in mfc it is not working }

    D 1 Reply Last reply
    0
    • S shiva shankar

      how to get the current working directory in MFC app Wizard (vc++), i have the code but it is working in Winconsole (vc++),but the same code is not working in MFC app Wizard, is there there any alternative code in MFC app wizard.. // #include #include #include void GetCurrentPath(char* buffer) { getcwd(buffer, _MAX_PATH); } void main() { char CurrentPath[_MAX_PATH]; GetCurrentPath(CurrentPath); printf("%s" , CurrentPath) ;//using messagebox instead of printf in mfc it is not working }

      D Offline
      D Offline
      Dudi Avramov
      wrote on last edited by
      #2

      Use GetCurrentDirectory WIN32 API.

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups