`stat()`的一些奇怪的行为

时间:2013-07-29 06:58:39

标签: c++ linux stat errno

我想在另一个内创建2个目录。目录将随机生成名称。但我已经对stat()函数的一些奇怪行为进行了描述。

stat()dirname_的每次调用都会返回0。但workdir_内没有文件。仍然无法找出我的代码中有什么问题。

Linux computer 3.8.0-26-generic #38-Ubuntu SMP Mon Jun 17 21:43:33 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux

上编译

以下是来源:

#include <string>
#include <stdexcept>
#include <iostream>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <stdlib.h>


const std::string _randomStr(const int len) {
    static const char alphanum[] =
        "0123456789"
        "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
        "abcdefghijklmnopqrstuvwxyz";
    std::string s(len + 1, 0);
    for (int i = 0; i < len; ++i) {
        s[i] = alphanum[rand() % (sizeof(alphanum) - 1)];
    }
    return s;
}

int main(void)
{
    std::string workdir_;
    std::string dirname_;
    struct stat sb;
    int err = 0;

    do {
        workdir_ = "./" + _randomStr(10);
    } while (0 == ::stat(workdir_.c_str(), &sb));
    err = ::mkdir(workdir_.c_str(), 0755);
    if (err)
        throw std::runtime_error("failed to initialize directory");
    std::cout << "workdir: " << workdir_ << std::endl;

    do {
        dirname_ = workdir_ + "/" + _randomStr(10);
    } while (0 == ::stat(dirname_.c_str(), &sb));
    err = ::mkdir(dirname_.c_str(), 0755);
    if (err)
        throw std::runtime_error("failed to initialize directory");
    std::cout << "dirname : " << dirname_ << std::endl;     
    return 0;
}

1 个答案:

答案 0 :(得分:3)

\0中有一个虚假dirname_。当您在循环内打印目录名并运行strace时,输出看起来像

write(2, "dirname : ", 10)              = 10
write(2, "./zLOZ2nOXpP\0/7U20o0J90x\0", 25) = 25
write(2, "\n", 1)                       = 1
stat("./zLOZ2nOXpP", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0

因此,cerrcout正确打印字符串(使用其长度),但在转换为带有c_str()的C字符串时,结果只是第一个目录名称,然后传递给stat()