-2

我需要在/tmp路径中创建 1000 个临时文件。下面是我使用 mkstemp 的方法(不受竞争条件的影响),但文件创建仅限于 500 个,其余的都失败了。

std::string open_temp(std::string path, std::ofstream& f) {
    path += "/preXXXXXX";
    std::vector<char> dst_path(path.begin(), path.end());
    dst_path.push_back('\0');

    int fd = mkstemp(&dst_path[0]);
    if(fd != -1) {           //fail condition 
        std::cout<<"not created count = "<<j++<<std::endl;
        // j = 500 why fail it gloabl varibale?
        path.assign(dst_path.begin(), dst_path.end() - 1);
        f.open(path.c_str(),
               std::ios_base::trunc | std::ios_base::out);
        close(fd);
    }
    return path;
}

int main() {
    std::ofstream logfile;
    for(int i=0;i<1000;i++)
    {
        std::cout<<"count = "<<i++ <<std::endl;
        open_temp("/tmp", logfile);
        // ^^^ calling 1000 times but only 500 sucess which is that?
        if(logfile.is_open()) {
            logfile << "testing" << std::endl;
        }
    }
}

注意:我在完成工作后删除了文件。

有人可以解释为什么这种方法会失败并提出更好的方法(如果有的话)吗?

4

1 回答 1

1
std::cout<<"count = "<<i++ <<std::endl;
                       ^^^

您正在增加i循环for。结果 i 从 0 变为 2、4、6、8 等,循环仅运行 500 次。将其更改为std::cout<<"count = "<<i <<std::endl;,看看情况如何...

另外我看到你也在j++上面做,但我没有看到在哪里j定义?

于 2017-06-25T13:53:21.903 回答