-
c++] 시스템의 환경 변수 얻기 std::getenv프로그래밍/c++ 2016. 4. 4. 16:55반응형
http://en.cppreference.com/w/cpp/utility/program/getenv
std::getenv
C++ Utilities library Program support utilities
Defined in header <cstdlib>
char* getenv( const char* env_var );
Searches the environment list provided by the host environment (the OS), for a string that matches the C string pointed to by env_var and returns a pointer to the C string that is associated with the matched environment list member.
#include <iostream>
#include <cstdlib>
int main()
{
if(const char* env_p = std::getenv("PATH"))
std::cout << "Your PATH is: " << env_p << '\n';
}
반응형'프로그래밍 > c++' 카테고리의 다른 글
함수에 주석 달기에 대한 생각 (0) 2016.04.24 iostream cerr, clog의 사용 (0) 2016.04.05 vector와 map에서의 end, 반복자의 성격. (0) 2016.04.02 boost::pool_allocator와 boost::fast_pool_allocator의 차이 (0) 2016.02.28 boost/pool을 멀티 스레드 환경에서 제대로 활용하려면.. (0) 2016.02.28