Sponsored Content
Top Forums Programming [c] How to calculate size of the file from size of the buffer? Post 302656147 by jim mcnamara on Thursday 14th of June 2012 09:55:10 AM
Old 06-14-2012
It is not guaranteed to work. Use stat() to get a file size.
Code:
#include <sys/stat.h>
size_t filesize(int fd)
{
     struct stat st;
     if(fstat(fd, &st) == -1 )
     {
          perror("cannot stat file");
          exit(1);
      }
     return st.st_size;
}

void myfoo(void)
{
    size_t bytes;
    //.......... your code here
     bytes=filesize(fileno(fic_sortie));
    //.......  more code here
}

try something like that.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

how to calculate the file size?

HI, Can somebody please tell me how many bytes make a KB & MB. ThANKS. Rooh.:( (3 Replies)
Discussion started by: rooh
3 Replies

2. Programming

Using fread if the buffer size is not known

Hi... I am trying to read a binary data that have different types of messages of different lengths. I am using fread() but this functions needs the size and count to read the buffer from the file. I think this may cause that the buffer overlaps other messages. Is there an alternative to read... (1 Reply)
Discussion started by: jlrodz
1 Replies

3. Shell Programming and Scripting

How to calculate file's size in directory and subdirectory

Hi, I have written one script to calculate total space of all file in one directory, ignoring subdirectory, it works fine. Now, I've been trying to calculate all files which includes files in any subdirectories. I use recursive function to do this, but it can work only if there is only one... (4 Replies)
Discussion started by: KLL
4 Replies

4. AIX

Pipe Buffer Size

Hi:- One of our users is getting an error: "There is no process to read data written to a pipe.” I am trying to find out what the pipe buffer size is currently set to. How do I go about this? Thanks, (0 Replies)
Discussion started by: janet
0 Replies

5. Red Hat

buffer cache size

hi everyone, can any one help change the buffer cache size in redhat and suse?? this error i got when i installed oracle 10g and it went well and when i try to mount the database using startup cmd it says too many buffer cache parameters (error code : ora-1034) thnq in advance (0 Replies)
Discussion started by: gsr_kashyap
0 Replies

6. UNIX for Dummies Questions & Answers

calculate directory size by year of file

I need to calcualte the size of a directory by the year the files in that directory were created . For example the script will sum up, by year, the number of blocks for that directory and its' subdirectories for files created / accessed in that year. I need a report that would look like... (11 Replies)
Discussion started by: igidttam
11 Replies

7. UNIX for Dummies Questions & Answers

How to check the buffer size of a file?

I have a c program and I want to know what command to use to display the current buffer size of the file using Terminal in Unix? (0 Replies)
Discussion started by: Izzy123
0 Replies

8. Programming

Maximum buffer size for read()

Hi friends, Hope everybody is fine. First have a look at my code, then we will talk about it. $ cat copy.c #include <stdio.h> #define PERMS 0644 /* RW for owner, R for group, others */ #define BUFSIZE 1 char *progname; int main(int argc,char * argv) { int f1, f2, n; ... (4 Replies)
Discussion started by: gabam
4 Replies

9. UNIX for Dummies Questions & Answers

Decrease buffer size

Hi, I am using the below command to get the output in a file called "Logs.txt" tail -f filename | egrep -i "cpu | hung " >> Logs.txt The problem is the Logs.txt file gets updated only after the buffer is 8Kb, but i want to update the file immediately and not wait for the buffer to get 8kb. Is... (8 Replies)
Discussion started by: @bhi
8 Replies

10. Shell Programming and Scripting

Find a particular directory in multiple file systems and calculate total size

Hello : I need some help in writing a ksh script which will find a particular directory in all the file systems in a server and finally report the total size of the direcotry in all the file systems. Some thing like this.. find /u*/app/oracle -type d -name "product" -prune and then... (1 Reply)
Discussion started by: Sam1974
1 Replies
FHOPEN(2)						      BSD System Calls Manual							 FHOPEN(2)

NAME
fhopen, fhstat, fhstatvfs -- access file via file handle LIBRARY
Standard C Library (libc, -lc) SYNOPSIS
#include <sys/types.h> #include <sys/mount.h> int fhopen(const void *fhp, size_t fh_size, int flags); #include <sys/stat.h> int fhstat(const void *fhp, size_t fh_size, struct stat *sb); #include <sys/statvfs.h> int fhstatvfs(const void *fhp, size_t fh_size, struct statvfs *buf); int fhstatvfs1(const void *fhp, size_t fh_size, struct statvfs *buf, int flags); DESCRIPTION
These functions provide a means to access a file given the opaque file handle fhp and the size fh_size of the opaque object as returned by getfh(2). As this method bypasses directory access restrictions, these calls are restricted to the superuser. fhopen() opens the file referenced by fhp for reading and/or writing as specified by the argument flags and returns the file descriptor to the calling process. The flags are specified by or'ing together the flags used for the open(2) call. All said flags are valid except for O_CREAT. fhstat(), fhstatvfs(), and fhstatvfs1() provide the functionality of the fstat(2), fstatvfs(2), and fstatvfs1(2) calls except that they return information for the file referred to by fhp rather than an open file. RETURN VALUES
Upon successful completion, fhopen() returns the file descriptor for the opened file, while fhstat(), fhstatvfs(), and fhstatvfs1() return 0. Otherwise, -1 is returned and errno is set to indicate the error. ERRORS
In addition to the errors returned by open(2), fstat(2), fstatvfs(2), and fstatvfs1(2), respectively, fhopen(), fhstat(), fhstatvfs(), and fhstatvfs1() will return [EINVAL] Calling fhopen() with O_CREAT set or invalid fh_size. [ESTALE] The file handle fhp is no longer valid. SEE ALSO
fstat(2), fstatvfs(2), fstatvfs1(2), getfh(2), open(2) HISTORY
The fhopen(), and fhstat() functions first appeared in NetBSD 1.5. The fhstatvfs() function replaced fhstatfs() in NetBSD 3.0. BSD
August 5, 2009 BSD
All times are GMT -4. The time now is 01:06 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy