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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. Is there a C++ funtion like GetSystemDrive?

Is there a C++ funtion like GetSystemDrive?

Scheduled Pinned Locked Moved C / C++ / MFC
c++helpquestion
4 Posts 3 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.
  • P Offline
    P Offline
    papafreebird
    wrote on last edited by
    #1

    Is there a C++ funtion like GetSystemDrive? Basically what I want is a way to get the system drive letter into a string. This is sort of like What I want to do. char BUFF[MAX_PATH] = {NULL}; GetWindowsDirectory(BUFF, MAX_PATH); strcat(BUFF, "\\whatever\\Register.bat"); That would create a string "C:\windows\whatever\Register.bat" What I really want is to create a string like this "C:\whatever\Register.bat" I just need a way to get the systems drive letter. Any help would be appreciated.

    P D 2 Replies Last reply
    0
    • P papafreebird

      Is there a C++ funtion like GetSystemDrive? Basically what I want is a way to get the system drive letter into a string. This is sort of like What I want to do. char BUFF[MAX_PATH] = {NULL}; GetWindowsDirectory(BUFF, MAX_PATH); strcat(BUFF, "\\whatever\\Register.bat"); That would create a string "C:\windows\whatever\Register.bat" What I really want is to create a string like this "C:\whatever\Register.bat" I just need a way to get the systems drive letter. Any help would be appreciated.

      P Offline
      P Offline
      papafreebird
      wrote on last edited by
      #2

      Well I'm answering my own question. I used Getenv("systemdrive") char * BUFF; BUFF = getenv ("SYSTEMDRIVE"); strcat( BUFF, "\\whatever\\Register.bat"); This produced C:\whatever\register.bat

      O 1 Reply Last reply
      0
      • P papafreebird

        Is there a C++ funtion like GetSystemDrive? Basically what I want is a way to get the system drive letter into a string. This is sort of like What I want to do. char BUFF[MAX_PATH] = {NULL}; GetWindowsDirectory(BUFF, MAX_PATH); strcat(BUFF, "\\whatever\\Register.bat"); That would create a string "C:\windows\whatever\Register.bat" What I really want is to create a string like this "C:\whatever\Register.bat" I just need a way to get the systems drive letter. Any help would be appreciated.

        D Offline
        D Offline
        David Crow
        wrote on last edited by
        #3

        Just take the drive letter returned from GetWindowsDirectory().

        "Normal is getting dressed in clothes that you buy for work and driving through traffic in a car that you are still paying for, in order to get to the job you need to pay for the clothes and the car and the house you leave vacant all day so you can afford to live in it." - Ellen Goodman

        "To have a respect for ourselves guides our morals; to have deference for others governs our manners." - Laurence Sterne

        1 Reply Last reply
        0
        • P papafreebird

          Well I'm answering my own question. I used Getenv("systemdrive") char * BUFF; BUFF = getenv ("SYSTEMDRIVE"); strcat( BUFF, "\\whatever\\Register.bat"); This produced C:\whatever\register.bat

          O Offline
          O Offline
          only coding
          wrote on last edited by
          #4

          It is not safe to modify the value of the environment variable using the returned pointer. By MSDN

          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