- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试读取这两个文件的大小以确定两个文件中哪个较小,但第二个文件的结果总是为零,而第一个文件的大小甚至都不正确,有什么想法吗?
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
int main()
{
struct stat buf1;
struct stat buf2;
FILE *fp1, *fp2;
int ch1, ch2;
clock_t elapsed;
char fname1[40], fname2[40];
printf("Enter name of first file:");
fgets(fname1, 40, stdin);
while ( fname1[strlen(fname1) - 1] == '\n')
{
fname1[strlen(fname1) -1] = '\0';
}
printf("Enter name of second file:");
fgets(fname2, 40, stdin);
while ( fname2[strlen(fname2) - 1] == '\n')
{
fname2[strlen(fname2) -1] = '\0';
}
fp1 = fopen(fname1, "r");
if ( fp1 == NULL )
{
printf("Cannot open %s for reading\n", fname1 );
exit(1);
}
fp2 = fopen(fname2, "r");
if (fp2 == NULL)
{
printf("Cannot open %s for reading\n", fname2);
exit(1);
}
//int name1 = fopen(fname1, "r");
//int name2 = fopen(fname2, "r");
stat(fp1, &buf1);
int size1 = buf1.st_size;
stat(fp2, &buf2);
int size2 = buf2.st_size;
printf("Size of file 1: %d\n", size1);
printf("Size of file 2: %d\n", size2);
elapsed = clock(); // get starting time
ch1 = getc(fp1); // read a value from each file
ch2 = getc(fp2);
unsigned long long counter = 0;
unsigned long long total = 0;
while(1) // transform this into a for loop
{
ch1 = getc(fp1);
ch2 = getc(fp2);
if((ch1 ^ ch2) == 0) // try to change this into a for loop?
{
counter++;
}
total++;
if ( ( ch1 == EOF) || ( ch2 == EOF)) // if either file reaches the end, then its over!
{
break; // if either value is EOF
}
}
fclose (fp1); // close files
fclose (fp2);
float percent = (float)counter / (float)total * 100.0f ;
printf("Counter: %u Total: %u\n", counter, total);
printf("Percentage: %.2f%\n", percent);
elapsed = clock() - elapsed; // elapsed time
printf("That took %.4f seconds.\n", (float)elapsed/CLOCKS_PER_SEC);
return 0;
}
结果如下:
Enter name of first file:air.197901.nc
Enter name of second file:air.197902.nc
Size of file 1: 1340845192
Size of file 2: 0
Counter: 147701939 Total: 1256756880
Percentage: 11.75
That took 105.8533 seconds.
最佳答案
您的代码甚至没有调用 fstat
。您正在调用 stat
但将 FILE
指针而不是路径名传递给它。你需要做:
stat(fname1, &buf1);
或:
fstat(fileno(fp1), &buf1);
这个错误应该从编译器中产生一个错误(或者至少是一个警告)。
此外,您应该检查 stat
或 fstat
的返回值。
关于c - fstat() 没有读取正确的文件大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24897309/
我试图阅读 fstat 的手册页,我得到了 fstat(2) , fstat(3)和 fstat(3P) . 过去使用过 system (2) 命令,我知道不同之处在于我必须自己编写一个原型(prot
我正在尝试读取这两个文件的大小以确定两个文件中哪个较小,但第二个文件的结果总是为零,而第一个文件的大小甚至都不正确,有什么想法吗? #include #include #include #inc
如果您只需要文件大小和创建日期,是否有使用 fstat() 函数的替代方法? 我知道我们可以使用 ftell() 来获取文件大小,但我也想要创建时间和日期。我不想使用 fstat() 的原因是如果文件
文件在那里,里面有 json 数据。我想知道文件的长度。但是当我尝试下面的代码时,它的大小仍然为 0。 int file_contentl_Len = 0; int fd_0 ; fd_0 = ope
我正在阅读stat 方法的手册here它说: Using fs.stat() to check for the existence of a file before calling fs.open()
如何获取系统中文件描述符的当前计数? 我知道如何获得最大值。 % sysctl kern.maxfiles kern.maxfiles: 8232 引用: http://www.freebsd.org
我的代码比较 2 个文件大小,其行为似乎类似于 keyfile > sourcefile。下面的代码是否缺少某些内容以及我可以更改什么?我用于测试的两个文件是 3kb key 文件和 14kb 源文件
我正在尝试查看哪个文件最近被修改过。如何比较找到的日期以找到最近的日期? localtime_r(&file_info.st_mtime), &time); asctime_r(&time, asct
所以,我有一个作业,基本上是一个比较系统调用速度和库函数速度的练习。我们正在对通过标准输入从文件中获取的字符串进行排序。我们应该使用 fstat 来确定该文件是否为常规文件。我已经通读了手册页,虽然我
在许多情况下,我看到在调用 open 分配文件描述符后直接执行 fstat 调用: fd = open(file, flags, mode); fstat_result = fstat(fd, &st
所以我对 C 很陌生。我用 Java 做过很多编程,但发现学习 C 非常困难。 目前,我被分配从我们的终端窗口读取一个文件,其中将包含一个整数列表。我们必须从这个列表中读取值并计算平均值,我相信我做对
我考虑读取未知大小的文件,我知道它不会同时改变大小。所以我打算使用fstat()函数和struct stat。现在我正在考虑 st_size 字段的真正含义以及我应该如何使用它。 如果我以这种方式获得
#include #include #include #include int main(int argc, char const *argv[]) { struct stat buf
#include #include #include #include int main(int argc, char const *argv[]) { struct stat buf
我正在 Raspbian 上编译 Angband 变体,但出现以下错误: struct stat txt_stat, raw_stat; /* Build the filename */ path_b
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我正在做一个fstat在我的文件描述符上并将其转储到 struct stat 。我阅读了 fstat 的文档(链接如下),它声称有成员 st_atime和st_mtime . http://pubs.
我正在尝试从 fstat() 获取设备的次要和主要编号。对 fstat() 的调用是在预加载的 mmap() 系统调用中完成的: // preload.so // compile with: // g
我使用 fstat 来获取文件大小。我想使用这个大小来声明一个数组,然后用另一个 fstat 更改大小并重新使用同一个数组。示例: fstat(file1, &fileStat); fsize = f
我目前正在使用沙盒 PyPy 编写 Python 沙盒。基本上,沙箱通过提供一个“ Controller ”来工作,该 Controller 将系统库调用映射到指定的函数。按照 codespeak 中
我是一名优秀的程序员,十分优秀!