getcwd
是 C++ 标准库中的一个函数,用于获取当前工作目录的绝对路径
- Linux 和 macOS:
在 Linux 和 macOS 系统上,
getcwd
的行为通常是一致的。它接受一个字符数组(通常是足够大的以容纳完整路径)作为参数,并返回该数组的内容,表示当前工作目录的绝对路径。如果发生错误(例如,提供的缓冲区太小),getcwd
将返回nullptr
,并设置errno
。
示例代码:
#include#include #include int main() { char cwd[1024]; if (getcwd(cwd, sizeof(cwd)) != nullptr) { std::cout << "Current working directory: " << cwd << std::endl; } else { std::cerr << "Error getting current working directory" << std::endl; } return 0; }
- Windows:
在 Windows 系统上,
getcwd
的行为与 Linux 和 macOS 类似。它同样接受一个字符数组作为参数,并返回该数组的内容,表示当前工作目录的绝对路径。如果发生错误(例如,提供的缓冲区太小),getcwd
将返回nullptr
,并设置errno
。
示例代码:
#include#include #include int main() { char cwd[1024]; if (getcwd(cwd, sizeof(cwd)) != nullptr) { std::cout << "Current working directory: " << cwd << std::endl; } else { std::cerr << "Error getting current working directory" << std::endl; } return 0; }
尽管 getcwd
在不同操作系统上的行为基本一致,但在实际使用中,仍需注意一些差异,例如路径分隔符和文件系统类型。为了编写可移植的代码,可以使用跨平台库(如 Boost.Filesystem)来处理文件路径。