C++系统相关操作8 - 获取程序的工作路径&获取用户的Home目录

  • [1. 关键词](#1. 关键词)
  • [2. sysutil.h](#2. sysutil.h)
  • [3. sysutil.cpp](#3. sysutil.cpp)
  • [4. 测试代码](#4. 测试代码)
  • [5. 运行结果](#5. 运行结果)
  • [6. 源码地址](#6. 源码地址)

1. 关键词

关键词:

C++ 系统调用 工作路径 Home目录 跨平台

应用场景:

  • 获取C++编译的二进制程序当前的工作目录,如:用于存储或读取缓存文件。
  • 获取用户的Home目录,如:用于保存或加载用户配置。

2. sysutil.h

c++ 复制代码
#pragma once

#include <cstdint>
#include <string>

namespace cutl
{
    /**
     * @brief Get the working directory of the current excuting process.
     *
     * @return file path of the working directory
     */
    std::string getcwd();

    /**
     * @brief Get the home dir for the current user.
     *
     * @return std::string the home directory.
     */
    std::string homedir();
} // namespace cutl

3. sysutil.cpp

c++ 复制代码
#include <map>
#include <iostream>
#include <strutil.h>
#include <cstdlib>
#include "sysutil.h"
#include "inner/logger.h"

#if defined(_WIN32) || defined(__WIN32__)
    #include<direct.h>
#else
    #include <unistd.h>
#endif

namespace cutl
{
    std::string getcwd()
    {
        static constexpr int MAX_PATH_LEN = 1024;
#if defined(_WIN32) || defined(__WIN32__)
        char buffer[MAX_PATH_LEN] = {0};
        char *presult = _getcwd(buffer, MAX_PATH_LEN);
        if (nullptr == presult)
        {
            CUTL_ERROR("_getcwd failure, presult is nullptr");
            return "";
        }
        return std::string(presult);
#else
        char buffer[MAX_PATH_LEN] = {0};
        char *presult = getcwd(buffer, MAX_PATH_LEN);
        if (nullptr == presult)
        {
            CUTL_ERROR("getcwd failure, presult is nullptr");
            return "";
        }
        return std::string(presult);
#endif
    }

    std::string homedir()
    {
#if defined(_WIN32) || defined(__WIN32__)
        return cutl::getenv("USERPROFILE", "");
#else
        return cutl::getenv("HOME", "");
#endif
    }
} // namespace cutl

4. 测试代码

c++ 复制代码
#include "common.hpp"
#include "sysutil.h"

void TestGetcwdAndHomedir()
{
    PrintSubTitle("TestGetcwdAndHomedir");

    std::cout << "working directory: " << cutl::getcwd() << std::endl;
    std::cout << "Home directory: " << cutl::homedir() << std::endl;
}

5. 运行结果

bash 复制代码
----------------------------------------TestGetcwdAndHomedir----------------------------------------
working directory: /Users/spencer/workspace/common_util
Home directory: /Users/spencer

6. 源码地址

更多详细代码,请查看本人写的C++ 通用工具库: common_util, 本项目已开源,代码简洁,且有详细的文档和Demo。

本文由博客一文多发平台 OpenWrite 发布!

相关推荐
东风吹柳几秒前
观察者模式(sigslot in C++)
c++·观察者模式·信号槽·sigslot
A懿轩A9 分钟前
C/C++ 数据结构与算法【栈和队列】 栈+队列详细解析【日常学习,考研必备】带图+详细代码
c语言·数据结构·c++·学习·考研·算法·栈和队列
大胆飞猪1 小时前
C++9--前置++和后置++重载,const,日期类的实现(对前几篇知识点的应用)
c++
1 9 J1 小时前
数据结构 C/C++(实验五:图)
c语言·数据结构·c++·学习·算法
夕泠爱吃糖1 小时前
C++中如何实现序列化和反序列化?
服务器·数据库·c++
长潇若雪1 小时前
《类和对象:基础原理全解析(上篇)》
开发语言·c++·经验分享·类和对象
染指11104 小时前
50.第二阶段x86游戏实战2-lua获取本地寻路,跨地图寻路和获取当前地图id
c++·windows·lua·游戏安全·反游戏外挂·游戏逆向·luastudio
Code out the future4 小时前
【C++——临时对象,const T&】
开发语言·c++
sam-zy4 小时前
MFC用List Control 和Picture控件实现界面切换效果
c++·mfc
aaasssdddd965 小时前
C++的封装(十四):《设计模式》这本书
数据结构·c++·设计模式