Установить локальные переменные среды в C ++ - PullRequest
39 голосов
/ 22 мая 2009

Как установить переменную окружения в C ++?

  • Им не нужно сохранять прежнее выполнение программы
  • Они должны быть видны только в текущем процессе
  • Предпочтение не зависит от платформы, но для моей проблемы нужно работать только на Win32 / 64

Спасибо

Ответы [ 3 ]

52 голосов
/ 22 мая 2009
NAME

       putenv - change or add an environment variable

SYNOPSIS

       #include &ltstdlib.h>

       int putenv(char *string);

DESCRIPTION
       The  putenv()  function adds or changes the value of environment
       variables.  The argument string is of the form name=value.  If name does
       not already exist in the environment, then string is added  to  the
       environment.   If name does exist, then the value of name in the
       environment is changed to value.  The string pointed to by string becomes
       part of the environment, so altering the string changes the environment.

На Win32 это называется _putenv, я верю.

См. SetEnvironmentVariable также, если вы поклонник длинных и уродливых имен функций.

3 голосов
/ 22 мая 2009

Я не уверен, что переменные окружения - это то, что вам нужно, так как они не будут использоваться вне этого прогона программы. Не нужно задействовать ОС.

Возможно, вам лучше иметь одноэлементный класс или пространство имен, которое содержит все эти значения, и инициализировать их при запуске программы.

0 голосов
/ 27 апреля 2011
#include<stdio.h>
#include<unistd.h>
#include<stdlib.h>
#include<string.h>
    main(int argc,char *argv[])
    {

    char *var,*value;
        if(argc==1||argc>3)
        {
        fprintf(stderr,"usage:environ variables \n");
        exit(0);
        }
    var=argv[1];
    value=getenv(var);
    //---------------------------------------
        if(value)
        {
        printf("variable %s has value %s \n",var,value);
        }
        else 
        printf("variable %s has no value \n",var);  
        //----------------------------------------
        if(argc==3)
        {
        char *string;
        value=argv[2];
        string=malloc(strlen(var)+strlen(value)+2);
            if(!string)
            {
            fprintf(stderr,"out of memory \n");
            exit(1);
            }   
            strcpy(string,var);
            strcat(string,"=");
            strcat(string,value);
            printf("calling putenv with: %s \n",string);
            if(putenv(string)!=0)
            {
            fprintf(stderr,"putenv failed\n");
            free(string);
            exit(1);
            }
                        value=getenv(var);
            if(value)
                 printf("New value of %s is %s \n",var,value);
            else
            printf("New value of %s is null??\n",var);
        }     
        exit(0);

    }//----main





/* commands to execure on linux   compile:- $gcc -o  myfile myfile.c
                      run:- $./myfile xyz
                                            $./myfile abc
                                            $./myfile pqr
*/
...