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 发布!

相关推荐
AI视觉网奇1 小时前
Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr
开发语言·c++·算法
智者知已应修善业1 小时前
【输入两个数字,判断两数相乘是否等于各自逆序数相乘】2023-10-24
c语言·c++·经验分享·笔记·算法·1024程序员节
oioihoii2 小时前
C++11到C++23语法糖万字详解
java·c++·c++23
比昨天多敲两行2 小时前
C++入门基础
开发语言·c++
集3042 小时前
C++多线程学习笔记
c++·笔记·学习
ComputerInBook2 小时前
C++编程语言:标准库:第39章——本地化(语言环境)( Locales)(Bjarne Stroustrup)
c++·c++语言环境·c++ 本地化设置·c++ locale·c++ facet·语言特征
繁华似锦respect3 小时前
C++ 智能指针底层实现深度解析
linux·开发语言·c++·设计模式·代理模式
Bona Sun5 小时前
单片机手搓掌上游戏机(二十三)—esp32运行简单街机模拟器软硬件准备
c语言·c++·单片机
@小码农5 小时前
2025年北京海淀区中小学生信息学竞赛第二赛段C++真题
开发语言·数据结构·c++·算法
sulikey5 小时前
C++模板初阶详解:从函数模板到类模板的全面解析
开发语言·c++·模板·函数模板·类模板