我想在另一个目录中创建 2 个目录。目录将具有随机生成的名称。但是我遇到了一些奇怪的stat()
函数行为。
每次调用stat()
fordirname_
返回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;
}