-4

我写了以下代码:

它应该接受一个文件名并创建它并写入它。没发生什么事。我不明白为什么。我尝试搜索并看到类似的示例应该可以正常工作。如果这很重要,我正在将 VirtualBox 与 Xubuntu 一起使用。

#include <stdio.h>
#include <stdlib.h>
#include <dirent.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <fcntl.h>
#include <time.h>
#include <assert.h>
#include <errno.h> 
#include <string.h>

#define SIZE_4KB        4096
#define FILE_SIZE       16777216



/*Generate a random string*/
char* randomStr(int length)
{
        int i = -1;
        char *result;
        result = (char *)malloc(length);
        while(i++ < length)
        {
                *(result+i) = (random() % 23) + 67;
                if(i%SIZE_4KB)
                        *(result+i) = '\0';
        }
        return result;
}

void writeFile(int fd, char* data, int len, int rate)
{
        int i = 0;
        len--;
        printf("Writing...\n");
        printf("to file %d :", fd);
        while(i < len)
        {
                write(fd, data, rate);
                i += rate;
        }
}

int main(int argc, char** argv)
{
        int i = -1, fd;
        char *rndStr;
        char *filePath;      
        assert (argc == 2);
        filePath = argv[1];
        rndStr = randomStr(FILE_SIZE);
        printf("The file %s was not found\n", filePath);
        fd = open(filePath, O_CREAT, O_WRONLY);
        writeFile(fd, rndStr, FILE_SIZE, SIZE_4KB);
        return 0;
}
4

1 回答 1

3

open调用是错误的。通过将参数与 OR 组合来指定多个标志。而且,当您创建文件时,第三个参数应该是您希望文件拥有的权限。所以你的open电话应该是这样的:

fd = open(filePath, O_CREAT | O_WRONLY, 0666);
if (fd < 0)
    Handle error…

您应该始终测试来自系统调用和库函数的返回值,以查看是否发生错误。

于 2012-11-08T21:53:11.120 回答