gpt4 book ai didi

c - 我的 C 程序在树莓派上创建了 4Gb 的文件,而它们的大小应该是 8 字节

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:44:54 24 4
gpt4 key购买 nike

我有一个在 Ubuntu 14.04 中用 GCC 编译的 C 代码,除其他外,创建一个文件,写入 8 个字节,然后关闭它。该代码在我的 i7 64 位 pc 上运行良好。问题是,当我在 32 位架构(带有 raspbian 的树莓派 2)上编译和执行我的代码时,此操作会创建一个大小为 4294967304 字节的文件。我不知道出了什么问题。奇怪的是,我的程序以同样的方式创建了 3 个文件,它们应该是空的,但每个文件的大小是 4 Gb,而我的可用内存只有 8 Gb。这让我相信我正在破坏文件系统 (ext4),但我不知道为什么。代码是这样的:

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

int main(int argc, char *argv[])
{
int outImpFile = open(argv[1], O_RDWR | O_LARGEFILE | O_CREAT, 0);
long long int imp = 89;
write(outImpFile, &imp, sizeof(long long int));
close(outImpFile);
}

当我用 ghex 打开创建的文件时,我只看到 8 个字节,但是当我使用 hexdiff 时,开头有很多空字节,最后我写了 8 个字节。

最佳答案

奇怪错误的原因是缺少正确的 header ,特别是 <unistd.h> .这导致参数为 write() 类型不正确,尤其是 count参数。

试试你的程序的这个更正版本:

#define _POSIX_C_SOURCE 200809L
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

#include <string.h>
#include <stdio.h>
#include <errno.h>

int main(int argc, char *argv[])
{
long long int value = 89;
ssize_t n;
int descriptor;

if (argc != 2) {
fprintf(stderr, "\nUsage: %s FILENAME\n\n", argv[0]);
return EXIT_FAILURE;
}

descriptor = open(argv[1], O_RDWR | O_CREAT, 0666);
if (descriptor == -1) {
fprintf(stderr, "%s: %s.\n", argv[1], strerror(errno));
return EXIT_FAILURE;
}

n = write(descriptor, &value, sizeof value);
if (n != sizeof value) {
if (n == -1)
fprintf(stderr, "%s: %s.\n", argv[1], strerror(errno));
else
fprintf(stderr, "%s: Partial write (%zd bytes).\n", argv[1], n);
close(descriptor);
return EXIT_FAILURE;
}

if (close(descriptor)) {
fprintf(stderr, "%s: Error closing file.\n", argv[1]);
return EXIT_FAILURE;
}

printf("%zd bytes written successfully to '%s'.\n", n, argv[1]);
return EXIT_SUCCESS;
}

总是,总是在编译代码时启用警告。对于 GCC,我使用 gcc -Wall -O2 (对于警告和编译器优化的结果)。我热烈建议您也这样做。如果将以上内容另存为 fixed.c , 然后编译它使用

gcc -Wall -O2 fixed.c -o fixed-example

并使用

运行它
./fixed-example output-file

如果你需要针对例如编译数学库,包括 -o 之前的选项旗帜;即 gcc -Wall -O2 fixed.c -lm -o fixed-example对于上述程序。选项的顺序对 GCC 很重要。

关于c - 我的 C 程序在树莓派上创建了 4Gb 的文件,而它们的大小应该是 8 字节,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47913591/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com