there is a file which is very large,
we can use stat to get a file size(<2G),
struct stat buf;
stat("file", &buf);
long s=(long)stat.st_size;
but stat::st_size is type of off_t(typedef long),
so how about a file larger than 2G?
many thanks~ 12 3964
zou wrote:
there is a file which is very large,
we can use stat to get a file size(<2G),
struct stat buf;
stat("file", &buf);
long s=(long)stat.st_size;
but stat::st_size is type of off_t(typedef long),
so how about a file larger than 2G?
You'll have to investigate the options provided by your platform. Standard C
itself specifies no functions to get the size of a "file." The only fully
portable method is to read through the file and keep count, and even then,
it's size "on disk" might be different to the size calculated by reading
it.
You also seem to be using C++. If so, then the appropriate group is
comp.lang.c++.
zou wrote:
there is a file which is very large,
we can use stat to get a file size(<2G),
struct stat buf;
stat("file", &buf);
long s=(long)stat.st_size;
but stat::st_size is type of off_t(typedef long),
so how about a file larger than 2G?
You are as off topic here as you were in c.l.c++, try comp.unix.programmer.
--
Ian Collins.
zou wrote:
>
there is a file which is very large,
we can use stat to get a file size(<2G),
struct stat buf;
stat("file", &buf);
long s=(long)stat.st_size;
but stat::st_size is type of off_t(typedef long),
so how about a file larger than 2G?
stat and off_t are not part of standard C and thus off-topic here.
Find a newsgroup dealing with your system, possibly
comp.unix.programmer.
--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net>
--
Posted via a free Usenet account from http://www.teranews.com
On Sep 30, 1:06 pm, CBFalconer <cbfalco...@yahoo.comwrote:
zou wrote:
there is a file which is very large,
we can use stat to get a file size(<2G),
struct stat buf;
stat("file", &buf);
long s=(long)stat.st_size;
but stat::st_size is type of off_t(typedef long),
so how about a file larger than 2G?
stat and off_t are not part of standard C and thus off-topic here.
Find a newsgroup dealing with your system, possibly
comp.unix.programmer.
It looks like this function is only available to Unix systems.
I think, you can check with the man page of stat.
C version of code ;-)
Refer this link - http://www.phim.unibe.ch/comp_doc/c_...XAMPLES/stat.c
#include <sys/stat.h> /* declare the 'stat' structure */
struct stat stat_p; /* 'stat_p' is a pointer to a structure
* of type 'stat'. */
if ( -1 == stat (filename, &stat_p))
{
printf(" Error occoured attempting to stat %s\n", filename);
exit(0);
}
printf("File size is %d bytes\n", stat_p.st_size);
Karthik Balaguru
On Sep 30, 9:21 am, zou <zou...@gmail.comwrote:
there is a file which is very large,
we can use stat to get a file size(<2G),
struct stat buf;
stat("file", &buf);
long s=(long)stat.st_size;
but stat::st_size is type of off_t(typedef long),
so how about a file larger than 2G?
many thanks~
What kind of compilers are you using?
I once did so in Microsoft Visual C++ 6.0. According to GNU C library,
there should be some functions like stat64/fstat64, but I cannot get
it work in Cygwin. I guess that stat64 would work in Linux/Unix.
Regards,
Tian
"karthikbalaguru" <ka***************@gmail.coma écrit dans le message de
news: 11*********************@r29g2000hsg.googlegroups.c om...
On Sep 30, 1:06 pm, CBFalconer <cbfalco...@yahoo.comwrote:
>zou wrote:
there is a file which is very large,
we can use stat to get a file size(<2G),
struct stat buf;
stat("file", &buf);
long s=(long)stat.st_size;
but stat::st_size is type of off_t(typedef long),
so how about a file larger than 2G?
stat and off_t are not part of standard C and thus off-topic here. Find a newsgroup dealing with your system, possibly comp.unix.programmer.
It looks like this function is only available to Unix systems.
I think, you can check with the man page of stat.
Wrong, it is available on a lot of non-Unix systems: cygwin, Windows (albeit
renamed to _stat)
C version of code ;-)
Refer this link - http://www.phim.unibe.ch/comp_doc/c_...XAMPLES/stat.c
That code looks pretty old and bogus
>
#include <sys/stat.h/* declare the 'stat' structure */
These are possibly also needed:
#include <sys/types.h>
#include <unistd.h>
>
struct stat stat_p; /* 'stat_p' is a pointer to a structure
* of type 'stat'. */
wrong, stat_p is a struct with an utterly misleading name
if ( -1 == stat (filename, &stat_p))
This style looks childish to me.
{
printf(" Error occoured attempting to stat %s\n", filename);
More typos, plus errors should go to stderr.
exit(0);
Better exit with EXIT_FAILURE if this is an error
}
printf("File size is %d bytes\n", stat_p.st_size);
stat_p.st_size is not an int.
It is an off_t: possibly a long or a long long.
It would be safer to write:
printf("File size is %lld bytes\n", (long long)stat_p.st_size);
Your post was off topic, and a correct answer had already been given with an
appropriate newsgroup to query.
To make things worse, your anwser is misleading and erroneous.
Please refrain from posting answers on topics you do not master, especially
when the question is off topic already.
--
Chqrlie.
karthikbalaguru wrote:
On Sep 30, 1:06 pm, CBFalconer <cbfalco...@yahoo.comwrote:
>zou wrote:
there is a file which is very large,
we can use stat to get a file size(<2G),
struct stat buf;
stat("file", &buf);
long s=(long)stat.st_size;
but stat::st_size is type of off_t(typedef long),
so how about a file larger than 2G?
stat and off_t are not part of standard C and thus off-topic here. Find a newsgroup dealing with your system, possibly comp.unix.programmer.
It looks like this function is only available to Unix systems.
I think, you can check with the man page of stat.
C version of code ;-)
Refer this link - http://www.phim.unibe.ch/comp_doc/c_...XAMPLES/stat.c
#include <sys/stat.h /* declare the 'stat' structure */
struct stat stat_p; /* 'stat_p' is a pointer to a structure
* of type 'stat'. */
if ( -1 == stat (filename, &stat_p))
{
printf(" Error occoured attempting to stat %s\n", filename);
exit(0);
}
printf("File size is %d bytes\n", stat_p.st_size);
Please attempt, wherever possible, to provide correct and compilable code.
The above code fragment, besides being uncompilable, is also not correct,
in that it invokes undefined behaviour in at least one place.
In article <fd*********@news.yaako.com>, zou <zo****@gmail.comwrote:
but stat::st_size is type of off_t(typedef long),
so how about a file larger than 2G?
I suppose by "stat::st_size" you mean the st_size field of the stat
structure. Note that stat() isn't a standard C function, but a unix
one which has made its way into some other systems.
Some systems have a symbol you can #define to make off_t be a 64-bit
type on a system where it is usually 32 bits. It appears to be
__USE_FILE_OFFSET64 on a Linux system here, but I have no experience
of using it so I recommend you ask in a group more specific to your
system.
-- Richard
--
"Consideration shall be given to the need for as many as 32 characters
in some alphabets" - X3.4, 1963.
On Sun, 30 Sep 2007 17:51:08 +0530, santosh
<sa*********@gmail.comwrote:
>karthikbalaguru wrote:
>On Sep 30, 1:06 pm, CBFalconer <cbfalco...@yahoo.comwrote:
>>zou wrote:
there is a file which is very large,
we can use stat to get a file size(<2G), struct stat buf; stat("file", &buf); long s=(long)stat.st_size;
but stat::st_size is type of off_t(typedef long), so how about a file larger than 2G?
stat and off_t are not part of standard C and thus off-topic here. Find a newsgroup dealing with your system, possibly comp.unix.programmer. It looks like this function is only available to Unix systems. I think, you can check with the man page of stat.
C version of code ;-) Refer this link - http://www.phim.unibe.ch/comp_doc/c_...XAMPLES/stat.c
#include <sys/stat.h /* declare the 'stat' structure */
struct stat stat_p; /* 'stat_p' is a pointer to a structure * of type 'stat'. */
if ( -1 == stat (filename, &stat_p)) { printf(" Error occoured attempting to stat %s\n", filename); exit(0); }
printf("File size is %d bytes\n", stat_p.st_size);
Please attempt, wherever possible, to provide correct and compilable code. The above code fragment, besides being uncompilable, is also not correct, in that it invokes undefined behaviour in at least one place.
You've misread the posting.
Richard Harter, cr*@tiac.net http://home.tiac.net/~cri, http://www.varinoma.com
But the rhetoric of holistic harmony can generate into a kind of
dotty, Prince Charles-style mysticism. -- Richard Dawkins
santosh <sa*********@gmail.comwrites:
karthikbalaguru wrote:
>On Sep 30, 1:06 pm, CBFalconer <cbfalco...@yahoo.comwrote:
>>zou wrote:
there is a file which is very large,
we can use stat to get a file size(<2G), struct stat buf; stat("file", &buf); long s=(long)stat.st_size;
but stat::st_size is type of off_t(typedef long), so how about a file larger than 2G?
stat and off_t are not part of standard C and thus off-topic here. Find a newsgroup dealing with your system, possibly comp.unix.programmer. It looks like this function is only available to Unix systems. I think, you can check with the man page of stat.
C version of code ;-) Refer this link - http://www.phim.unibe.ch/comp_doc/c_...XAMPLES/stat.c
#include <sys/stat.h /* declare the 'stat' structure */
struct stat stat_p; /* 'stat_p' is a pointer to a structure * of type 'stat'. */
if ( -1 == stat (filename, &stat_p)) { printf(" Error occoured attempting to stat %s\n", filename); exit(0); }
printf("File size is %d bytes\n", stat_p.st_size);
Please attempt, wherever possible, to provide correct and compilable code.
The above code fragment, besides being uncompilable, is also not correct,
in that it invokes undefined behaviour in at least one place.
Since the undefined behaviour is nothing to so with stat, as such,
possibly you could explain? Surely not all "samples" that people post
where they are having difficulties need to be sanitised?!?!? At first
glance all I see really wrong is the comment about stat_p being a pointer. It
isn't. And of course the lack of an include for printf.
"Richard" <rg****@gmail.comschrieb im Newsbeitrag
news:34************@news.individual.net...
santosh <sa*********@gmail.comwrites:
>karthikbalaguru wrote:
>>On Sep 30, 1:06 pm, CBFalconer <cbfalco...@yahoo.comwrote: zou wrote:
there is a file which is very large,
we can use stat to get a file size(<2G), struct stat buf; stat("file", &buf); long s=(long)stat.st_size;
but stat::st_size is type of off_t(typedef long), so how about a file larger than 2G?
stat and off_t are not part of standard C and thus off-topic here. Find a newsgroup dealing with your system, possibly comp.unix.programmer.
It looks like this function is only available to Unix systems. I think, you can check with the man page of stat.
C version of code ;-) Refer this link - http://www.phim.unibe.ch/comp_doc/c_...XAMPLES/stat.c
#include <sys/stat.h /* declare the 'stat' structure */
struct stat stat_p; /* 'stat_p' is a pointer to a structure * of type 'stat'. */
if ( -1 == stat (filename, &stat_p)) { printf(" Error occoured attempting to stat %s\n", filename); exit(0); }
printf("File size is %d bytes\n", stat_p.st_size);
Please attempt, wherever possible, to provide correct and compilable code. The above code fragment, besides being uncompilable, is also not correct, in that it invokes undefined behaviour in at least one place.
Since the undefined behaviour is nothing to so with stat, as such,
possibly you could explain? Surely not all "samples" that people post
where they are having difficulties need to be sanitised?!?!? At first
glance all I see really wrong is the comment about stat_p being a pointer.
It
isn't. And of course the lack of an include for printf.
And exactly that missing "#include <stdio.h>" is causing undefined behaviour
(varadic function without prototype).
Bye, Jojo
"Joachim Schmitz" <no*********@schmitz-digital.dewrites:
>Since the undefined behaviour is nothing to so with stat, as such, possibly you could explain? Surely not all "samples" that people post where they are having difficulties need to be sanitised?!?!? At first glance all I see really wrong is the comment about stat_p being a pointer. It isn't. And of course the lack of an include for printf.
And exactly that missing "#include <stdio.h>" is causing undefined behaviour
(varadic function without prototype).
Bye, Jojo
I know. hence I pointed it out. The point here is that yet again we have
"noise" shouting "OT" while not actually providing any help. This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: PeterB |
last post by:
Hi!
I am using the script below to download files, that are in a non-public
directory, from my site. The "smaller files" section works for smaller
files. However when the files are getting...
|
by: baustin75 |
last post by:
Posted: Mon Oct 03, 2005 1:41 pm Post subject: cannot mail() in ie
only when debugging in php designer 2005
--------------------------------------------------------------------------------
...
|
by: LongBow |
last post by:
Hello all,
From doing a google serach in the newsgroups I found out that a
string can't be returned from a function, but using a char* I should
be able to do it. I have spent most of the day...
|
by: Claudio Grondi |
last post by:
I have just started to play around with the bsddb3 module interfacing
the Berkeley Database.
Beside the intended database file
databaseFile.bdb
I see in same directory also the
__db.001...
|
by: |
last post by:
I was wondering if anyone can help explain this code for me
<table width="<?= $TABLE_WIDTH ?>" border="0" cellspacing="0" cellpadding="0">
<?php
for ($x=1; $x<=pow(2, $COLUMNS); $x++) {
// open...
|
by: Jefferis NoSpamme |
last post by:
Hi all, I'm trying to limit the file size of an image submission and I keep
running into various problems. I've got most of it working, but I'm stumped
and I have a basic question as to WHY this...
|
by: zou |
last post by:
there is a file which is very large,
we can use stat to get a file size(<2G),
struct stat buf;
stat("file", &buf);
long s=(long)stat.st_size;
but stat::st_size is type of off_t(typedef...
|
by: bobby |
last post by:
hi group,
Does the header file size or number in include(s) effect the size of
executable file?
In other world if i chose a large header file and include it with my
source file does it increase...
|
by: rsaharia |
last post by:
Hello All,
I need help with this particular .pl file I picked up from http://www.veritools-usa.com/xnf2vhdl.htm
What it's supposed to do is really convert an xnf file to a vhdl file. I need it for...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
|
by: Matthew3360 |
last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function.
Here is my code.
header("Location:".$urlback);
Is this the right layout the...
|
by: Matthew3360 |
last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it so the python app could use a http request to get...
|
by: AndyPSV |
last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and...
|
by: Arjunsri |
last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and credentials and received a successful connection...
|
by: Matthew3360 |
last post by:
Hi,
I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web server and have made sure to enable curl. I get a...
|
by: Oralloy |
last post by:
Hello Folks,
I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA.
My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
|
by: Carina712 |
last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
|
by: BLUEPANDA |
last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...
| |