Ask Experts Questions for FREE Help !
Ask
    ejas_6r's Avatar
    ejas_6r Posts: 1, Reputation: 1
    New Member
     
    #1

    Aug 26, 2007, 10:57 PM
    To find size of a file
    Hi,
    I need a help in C++ programming
    In program - I want to make empty a log file depending upon its size(eg 10Mb)
    retsoksirhc's Avatar
    retsoksirhc Posts: 912, Reputation: 71
    Senior Member
     
    #2

    Aug 26, 2007, 11:08 PM
    I'm not too familiar with C++, but I have done PHP... I don't recall a file size function. One way to find it might to just to open the file in append mode, and then get the current file pointer. I *think* youn can do that in C, but like I said, I don't program with it.
    asterisk_man's Avatar
    asterisk_man Posts: 476, Reputation: 32
    Full Member
     
    #3

    Aug 27, 2007, 12:52 PM
    Look up the stat() command.
    I think something like this will work.

    Code:
    #include <sys/stat.h>
    #include <sys/types.h>
    
    main()
    {
      struct stat sbuf;
      stat("yourfilenamehere",&sbuf);
      printf("Your file is %d bytes\n" sbuf.st_size);
    }
    retsoksirhc's Avatar
    retsoksirhc Posts: 912, Reputation: 71
    Senior Member
     
    #4

    Aug 27, 2007, 12:58 PM
    Quote Originally Posted by asterisk_man
    Asterisk man, asterisk man, doing the things an asterisk can, they have a fight, asterisk wins, asterisk man. Bahdubbadubbadubbadubbadubbaduh-bah-bah. - Capuchin
    Is he a dot or is he a spec? If he's underwater does he get wet, or does the water get him instead? Asterisk man...

Not your question? Ask your question View similar questions

 

Question Tools Search this Question
Search this Question:

Advanced Search

Add your answer here.


Check out some similar questions!

How to save JPEG into smaller size of file... [ 1 Answers ]

Im using Corel and Adobe... I want to know how to export my work into a smaller size of JPEG file... cause I enccounter this when Im to upload a photo in a site... but it asking me to upload only 110 x 110 pixels and 15k... so I edit my 2 x 2 photo (300 DPI) using photoshop I try to reduce the...

Find a file [ 1 Answers ]

How can I find a missing file SKU112,Cab this is for oofice 2003

Add a pop-up drain in older bathroom tub.can't find correct size? [ 3 Answers ]

Recently went about replacing an older rusty drain in an inset tub, get the special drain removal tool (vertical piece with hole for screwdriver to help twist out drain). Removed old drain with much effort, then purchased new kit from Home Depot. All "standard" replacement drains including any...

How to find the right size fuse [ 1 Answers ]

I have 240v circuit and a solenoid that I want to know what size fuse should I use.


View more questions Search