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

相关推荐
珹洺3 分钟前
C++AI多模型聊天系统(四)SSH反向隧道/虚拟局域网(VLAN)调用本地Ollama大模型
c++·人工智能·ssh
小π军4 分钟前
STL之multiset 常见API介绍
数据结构·c++·算法
CSharp精选营4 分钟前
Avalonia UI:.NET 跨平台桌面开发的“真香”选择
.net·跨平台·avalonia·桌面开发·ui框架
同勉共进6 分钟前
并发编程系列(二)—— store, load 与 RMW
c++·arm·并发编程·x86·store·load·rmw
山甫aa7 分钟前
多叉树定义与遍历-----从零开始的数据结构
开发语言·c++·二叉树·多叉树
永远睡不够的入10 分钟前
C++11新特性(2):深入 C++ 参数传递黑盒:从引用折叠到完美转发,再到可变参数模板
开发语言·c++
无限进步_15 分钟前
【C++】寻找数组中出现次数超过一半的数字:三种解法深度剖析
开发语言·c++·git·算法·leetcode·github·visual studio
咸鱼翻身小阿橙19 分钟前
C++ 与 QML 交互入门笔记
c++·笔记·交互
南境十里·墨染春水21 分钟前
C++ 笔记 ——STL deque
开发语言·c++·笔记
j_xxx404_24 分钟前
我用 Codex 做了一个智能围棋机器人系统:从 AI 引擎接入到前后端联调的完整实战
c++·人工智能·python·机器人·软件工程·团队开发·react