我写了以下代码:
它应该接受一个文件名并创建它并写入它。什么都没发生。 我不明白为什么。我尝试搜索,看到类似的例子应该工作正常。 如果重要的话,我正在使用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;
}
答案 0 :(得分:3)
open
来电是错误的。通过将参数与OR组合来指定多个标志。并且,在创建文件时,第三个参数应该是您希望文件具有的权限。因此,您的open
电话应该是:
fd = open(filePath, O_CREAT | O_WRONLY, 0666);
if (fd < 0)
Handle error…
您应该始终测试系统调用和库函数的返回值,以查看是否发生了错误。