Thread: very newbie question: how to copy files

  1. #16
    Has a Masters in B.S.
    Join Date
    Aug 2001
    Posts
    2,263
    >Would this be wrong?

    nope.

    >
    Better yet, would it be wrong to put the function CopyFile() into a header file in your compiler's include directory so all your programs may call CopyFile(old spot, new spot)?
    <

    it sounds fine to me.

    >Or how about?

    looks fine.

    oh BTW: i forgot to close the files... i have corrected that error.
    Last edited by no-one; 04-24-2002 at 04:52 PM.
    ADVISORY: This users posts are rated CP-MA, for Mature Audiences only.

  2. #17
    ATH0 quzah's Avatar
    Join Date
    Oct 2001
    Posts
    14,826
    A "correct" way was my example. My example works fine with one slight modification. Again, the only reason it was "incorrect" is because apparently fputc is gimped and can't write EOF.

    while( (c=fgetc(inputfile)) != EOF ) fputc( c, outfile );

    This will work on binary or text files.

    Quzah.
    Hope is the first step on the road to disappointment.

  3. #18
    Has a Masters in B.S.
    Join Date
    Aug 2001
    Posts
    2,263
    i never said it was incorrect, just slower. more memory efficient but slower.
    ADVISORY: This users posts are rated CP-MA, for Mature Audiences only.

  4. #19
    Registered User
    Join Date
    Oct 2001
    Posts
    2,934
    >Would this be wrong? Better yet, would it be wrong to put the function CopyFile() into a header file in your compiler's include directory so all your programs may call CopyFile(old spot, new spot)?

    Great idea. It is a perfect place for a function. In fact I had a CopyFile() function in one of my programs (actually it was c++).

  5. #20
    ATH0 quzah's Avatar
    Join Date
    Oct 2001
    Posts
    14,826
    Originally posted by no-one
    i never said it was incorrect, just slower. more memory efficient but slower.
    Yup. Salem said it was incorrect. My whole purpose in replying was to make one for the hell of it that didn't require the use of any varaibles. I wasn't trying to make a better wheel, just a different one.

    Quzah.
    Hope is the first step on the road to disappointment.

  6. #21
    Has a Masters in B.S.
    Join Date
    Aug 2001
    Posts
    2,263
    much prettier than mine i must say.

    as a stand alone program i wouldn't need all the specific file closeing
    but as a function i need more specifics, like so is much better more like something i would use.

    maybe this

    Code:
    #include <stdio.h>
    #include <malloc.h>
    
    #define CloseUp() if(fin)fclose(fin);if(fout)fclose(fout);if(buf)free(buf);
    
    int main(void)
    {
        FILE* fin,* fout;
        int filesize;
        char* buf = NULL;
    
        if(!(fin = fopen("C:\\filein.xxx","rb")))
        {
            printf("Unable To Open Input File\n");
            return -1;
        }
        if(!(fout = fopen("C:\\fileout.xxx","wb")))
        {
            printf("Unable To Open Output File\n");
            CloseUp();
            return -1;
        }
    
        fseek(fin,0,SEEK_END);
        if(!(filesize = ftell(fin)))
        {
            CloseUp();
            return 0;
        }
        
        fseek(fin,0,SEEK_SET);
    
        if(!(buf = (char*) malloc(filesize)))
        {
            printf("Out Of Memory\n");
            CloseUp();
            return -1;
        }
    
        if(fread(buf,1,filesize,fin) < filesize)
        {
            printf("File Read Error\n");
            CloseUp();
            return -1;
        }
        if(fwrite(buf,1,filesize,fout) < filesize)
        {
            printf("File Write Error\n");
            CloseUp();
            return -1;
        }
        CloseUp();
        return 0;
    }
    yes thats much better...

    ::edit:: still a little over complicated... in my opinion, im just waiting for Salem to smoke me with something better, which he undoubtably has.
    Last edited by no-one; 04-24-2002 at 05:20 PM.
    ADVISORY: This users posts are rated CP-MA, for Mature Audiences only.

  7. #22
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,659
    > Better yet, would it be wrong to put the function CopyFile() into a header file in your
    Yes - for two reasons
    1. You don't put code into .h files, you put prototypes into .h files. The reason being, if you include the same file twice (in different source files say), you now have two copies of the code, with the same name, and one very confused linker.
    2. Never put your own header files into the compiler's include directory - consider what would happen at upgrade time.

    Your own include directory (and parallel lib directory) is the correct place for this.

    > Again, the only reason it was "incorrect" is because apparently fputc is gimped and can't write EOF
    There's nothing wrong with fputc - if you try your code, you'll see that the output is one char bigger than the input, and the last char in the file is (char)EOF.

    EOF is a state - it's not read from a file, and its not written to a file.

    Re: no-one's code.
    Here are some points to ponder
    1. malloc.h is not an ANSI header file, malloc is in stdlib.h
    2. ftell returns a long, not an int - which may be different sizes. On some machines, your files would be clipped to a max size of 64K.
    3. The whole malloc idea is bad - the scenario for large files is that most of the file lands in swap space, so not only do you read the file, you have to read it all again from swap.
    4. if(!(filesize = ftell(fin))) this test fails should ftell ever return -1

    > So if that isn't a good way to do it. What would the right way be Salem?
    Prelude's fread/fwrite loop seems pretty good
    For completeness, it should check ferror() on both input and output streams when the while loop exits.

  8. #23
    Unleashed
    Join Date
    Sep 2001
    Posts
    1,765
    Yes - for two reasons
    1. You don't put code into .h files, you put prototypes into .h files. The reason being, if you include the same file twice (in different source files say), you now have two copies of the code, with the same name, and one very confused linker.

    I overlooked that.

    2. Never put your own header files into the compiler's include directory - consider what would happen at upgrade time.

    Good point.

    Thanks Salem.
    The world is waiting. I must leave you now.

  9. #24
    Registered User
    Join Date
    Apr 2002
    Posts
    10
    folks, I have found the following:

    -------------
    Code:
    #define BUFSIZE (4 * 1024)
    
    ...
    
    int src_fd, dst_fd;
    size_t bytes_read, bytes_written;
    static char CopyBuf[BUFSIZE];
    	
    int final_ret = 0;
    	
    errno = 0;
    	
    /*--- cp -p aaa bbb ---*/
    /*--- open source file ---*/
    if ((src_fd = open(aaa_ptr, O_RDONLY)) == -1)
    {
     final_ret++;
    }
    /*--- open destination file ---*/
    if ((dst_fd = open(bbb_ptr, O_CREAT|O_TRUNC|O_WRONLY, (S_IREAD|S_IWRITE))) == -1)
    {
     close(src_fd);
     final_ret++;
    }
    	
    for 
    (
    bytes_read = -1, bytes_written = -1;
    bytes_read == bytes_written && (bytes_read = read (src_fd, CopyBuf, BUFSIZE)) > 0;
    bytes_written = write (dst_fd, CopyBuf, bytes_read)
    )
    {
    /*--- void ---*/
    }
    	
    close(src_fd);
    close(dst_fd);
    
    return final_ret;
    -----------------------------------

    comments?

  10. #25
    ATH0 quzah's Avatar
    Join Date
    Oct 2001
    Posts
    14,826
    > comments?

    Yeah. Why are you bothering with low level functions such as 'open' and 'close' when you can just use 'fopen' etc? Shrug. Just curious.

    Quzah.
    Hope is the first step on the road to disappointment.

  11. #26
    Has a Masters in B.S.
    Join Date
    Aug 2001
    Posts
    2,263
    >
    Yes - for two reasons
    1. You don't put code into .h files, you put prototypes into .h files. The reason being, if you include the same file twice (in different source files say), you now have two copies of the code, with the same name, and one very confused linker.
    <

    man, i am so ashamed, Sunlight im sorry! god it took him i can't remember how many post to knock that into my head!

    >
    2. Never put your own header files into the compiler's include directory - consider what would happen at upgrade time.

    Your own include directory (and parallel lib directory) is the correct place for this.
    <

    once again not thinking!

    >
    Re: no-one's code.
    Here are some points to ponder
    <

    i knew i missed something!

    1. DOAH!! i told myself to use stdlib.h!

    2. well... unfortunatly most of us wrongly a take 32 bit int for granted now... big mistake!

    3. once again correct, but my intention was not for large file copying.

    4. i should know better...

    >Prelude's fread/fwrite loop seems pretty good

    very nice, though slim on error checking quzah's is also not bad,
    i was aimin for fastest possible small file copying.

    >
    Yeah. Why are you bothering with low level functions such as 'open' and 'close' when you can just use 'fopen' etc? Shrug. Just curious.
    <

    to avoid the sometimes large overhead of higher level functions, like fopen.

    >comments?

    i'll let Salem do it this time.

    ::edit::

    Thanks Salem, honestly i appreciate it.

    i don't think i would have te guts to post without you here,
    i honestly appreciate you tearing my code up! i learn a lot from it. please do it any time you feel the urge.

    ::edit::
    Last edited by no-one; 04-25-2002 at 02:21 PM.
    ADVISORY: This users posts are rated CP-MA, for Mature Audiences only.

  12. #27
    Registered User
    Join Date
    Apr 2002
    Posts
    10
    ---
    Yeah. Why are you bothering with low level functions such as 'open' and 'close' when you can just use 'fopen' etc? Shrug. Just curious.
    ---

    to avoid the sometimes large overhead of higher level functions, like fopen.

    ---
    exaclty my point
    Last edited by webwesen; 04-25-2002 at 03:58 PM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Help to copy files in c++
    By Helgso in forum C++ Programming
    Replies: 52
    Last Post: 11-21-2008, 08:50 AM
  2. how to copy binary files using Unix API's
    By rohan_ak1 in forum C Programming
    Replies: 25
    Last Post: 05-07-2008, 09:12 AM
  3. added start menu crashes game
    By avgprogamerjoe in forum Game Programming
    Replies: 6
    Last Post: 08-29-2007, 01:30 PM
  4. Trying to get my App to copy files with wildcards
    By Dwizard in forum Windows Programming
    Replies: 3
    Last Post: 09-30-2005, 05:49 PM
  5. Question About External Files (Beginner)
    By jamez05 in forum C Programming
    Replies: 0
    Last Post: 08-11-2005, 07:05 AM