getcwd第二个参数

发布于 2024-10-17 05:21:33 字数 42 浏览 7 评论 0原文

如果我正在读取当前目录,函数 getcwd 的第二个参数应该填写什么?

What should i fill in the second parameter of the function getcwd if I am reading the current directory?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

墨小沫ゞ 2024-10-24 05:21:33

要填充的缓冲区的大小:

char result[PATH_MAX];
char *r = getcwd(result, PATH_MAX);

未能正确设置(或发现ENAMETOOLONG/ERANGE)可能会导致缓冲区溢出问题。

注意:并非所有平台都提供 PATH_MAX。如果您可以确定它存在于您的平台上,那就非常方便了。

您还可以使用 realpath() (POSIX.1-2008),它将为您提供 malloc() 内存,以便更干净地执行此操作:

char *result = realpath(".", NULL);
// do stuff with result
free(result);

The size of the buffer you want to fill:

char result[PATH_MAX];
char *r = getcwd(result, PATH_MAX);

Failure to set this correctly (or spot ENAMETOOLONG/ERANGE) could lead to buffer overflow problems.

Caveat: Not all platforms provide PATH_MAX. If you can be sure it's there on your platforms it is quite handy.

You can also use realpath(), (POSIX.1-2008) which will malloc() memory for you to do this more cleanly:

char *result = realpath(".", NULL);
// do stuff with result
free(result);
秋叶绚丽 2024-10-24 05:21:33

您在第一个参数中提供的缓冲区的长度,以便不会发生溢出。

The length of the buffer you provide in the first parameter, so that overflow cannot occur.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文