Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > C Programming > shutil.copy in c

Reply
Thread Tools

shutil.copy in c

 
 
yinglcs@gmail.com
Guest
Posts: n/a
 
      07-12-2007
Hi,

Is there a c library which does shutil.copy2() in python? Basically
copy a file from 1 directory to another?

import shutil
import os

shutil.copy2(r"C:\test\test",r"C:\test1\test")

Thank you.

 
Reply With Quote
 
 
 
 
Pietro Cerutti
Guest
Posts: n/a
 
      07-12-2007
wrote:
> Hi,
>
> Is there a c library which does shutil.copy2() in python? Basically
> copy a file from 1 directory to another?


Standard C doesn't know anything about files or directories.
What you need is an OS-specific library function / system call, better
discussed in a newsgroup related to your system.

--
Pietro Cerutti

PGP Public Key:
http://gahr.ch/pgp
 
Reply With Quote
 
 
 
 
Walter Roberson
Guest
Posts: n/a
 
      07-12-2007
In article <. com>,
<> wrote:

>Is there a c library which does shutil.copy2() in python? Basically
>copy a file from 1 directory to another?


Not in standard C, no. There is no file copy utility in the
C standard.

There will likely be the usual responses about opening the file,
reading it a char at a time and writing the chars to an output
file. However, "files" may have attributes other than just
their contents (especially if the filename is a device!),
and there is no way in standard C to discover or duplicate
those attributes. I would suspect that python's shutil.copy2()
*does* have a way of detecting and dealing with those attributes.

In Windows (based upon the filenames you gave), the sort
of attributes you might want copied could include the
alternate data streams, and the security rights.
--
Okay, buzzwords only. Two syllables, tops. -- Laurie Anderson
 
Reply With Quote
 
Keith Thompson
Guest
Posts: n/a
 
      07-12-2007
Pietro Cerutti <> writes:
> wrote:
>> Is there a c library which does shutil.copy2() in python? Basically
>> copy a file from 1 directory to another?

>
> Standard C doesn't know anything about files or directories.
> What you need is an OS-specific library function / system call, better
> discussed in a newsgroup related to your system.


It doesn't know about directories, but it does know a thing or two
about files.

--
Keith Thompson (The_Other_Keith) kst- <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
 
Reply With Quote
 
Jens Thoms Toerring
Guest
Posts: n/a
 
      07-12-2007
Pietro Cerutti <> wrote:
> wrote:
> > Is there a c library which does shutil.copy2() in python? Basically
> > copy a file from 1 directory to another?


> Standard C doesn't know anything about files or directories.


Nitpick alarm: the C standard luckily at least admits to the
existence of files, otherwise functions like fopen(), fread()
etc. would rather likely not exist (or do something else than
what they are required to do
Regards, Jens
--
\ Jens Thoms Toerring ___
\__________________________ http://toerring.de
 
Reply With Quote
 
Richard Bos
Guest
Posts: n/a
 
      07-13-2007
"" <> wrote:

> Is there a c library which does shutil.copy2() in python? Basically
> copy a file from 1 directory to another?
>
> import shutil
> import os
>
> shutil.copy2(r"C:\test\test",r"C:\test1\test")


I cannot fathom the need for a specific function to copy from one
directory to another, given both complete file names. Surely if you have
filename1 and filename2, that should allow you to do a copy from the one
to the other regardless of whether either of them is in any directory or
whether the system has directories at all?
In any case, given two file names, the procedure in C is simple.
fopen(filename1, "rb"), fopen(filename2, "wb"), fread() from file 1 and
fwrite() to file 2 until you run out of data, fclose() both files.
That's it. No need to fret about directories.

Richard
 
Reply With Quote
 
Keith Thompson
Guest
Posts: n/a
 
      07-13-2007
(Richard Bos) writes:
> "" <> wrote:
>> Is there a c library which does shutil.copy2() in python? Basically
>> copy a file from 1 directory to another?
>>
>> import shutil
>> import os
>>
>> shutil.copy2(r"C:\test\test",r"C:\test1\test")

>
> I cannot fathom the need for a specific function to copy from one
> directory to another, given both complete file names. Surely if you have
> filename1 and filename2, that should allow you to do a copy from the one
> to the other regardless of whether either of them is in any directory or
> whether the system has directories at all?
> In any case, given two file names, the procedure in C is simple.
> fopen(filename1, "rb"), fopen(filename2, "wb"), fread() from file 1 and
> fwrite() to file 2 until you run out of data, fclose() both files.
> That's it. No need to fret about directories.


If you need your program to be as portable as possible, that's the way
to do it. But very often there can be requirements other than
portability. If I had a need to copy a file in a C program intended
to run under a Unix-like system, I'd invoke the "cp" command; this is
likely (but not certain) to be faster than a pure C solution, and it
gives me more options regarding *how* to copy the file (most of which
are outside the scope of C). Under Windows (implied by the file names
used by the OP), I suppose I'd use "copy" for the same reasons.

I'm not very familiar with Python, but I presume that 'shutil.copy2'
is an abstraction that invokes "cp", or "copy", or whatever. With
some effort, you can build the same kind of abstraction in C -- and
I'm sure it's already been done.

--
Keith Thompson (The_Other_Keith) kst- <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
 
Reply With Quote
 
Roland Pibinger
Guest
Posts: n/a
 
      07-14-2007
On Fri, 13 Jul 2007 10:58:13 GMT, Richard Bos wrote:
>In any case, given two file names, the procedure in C is simple.
>fopen(filename1, "rb"), fopen(filename2, "wb"), fread() from file 1 and
>fwrite() to file 2 until you run out of data, fclose() both files.
>That's it.


A production quality copy function in C is not trivial. The code you
can find on the internet is mostly defective. A production quality
copy function at least needs:
- an explicit policy wrt overwriting an existing file
- preparation for the worse cases, ie. return values of read, write,
and close functions and/or stream state must be checked
- preparation for the worst case, the crash during copying

The last requirement implies that the file is first written to a
temporary file (in the same directory as the destination file) and
renamed later after all copying is reliably finished. A production
quality copy function would probably use the Posix I/O functions
instead of stdio because they provide some essential features not
present in stdio, e.g. you can open a file with O_CREAT | O_EXCL or
flush data to disk with fsync (_commit on Windows).


--
Roland Pibinger
"The best software is simple, elegant, and full of drama" - Grady Booch
 
Reply With Quote
 
Richard Bos
Guest
Posts: n/a
 
      07-16-2007
Keith Thompson <kst-> wrote:

> (Richard Bos) writes:
> > "" <> wrote:
> >> Is there a c library which does shutil.copy2() in python? Basically
> >> copy a file from 1 directory to another?
> >>
> >> import shutil
> >> import os
> >>
> >> shutil.copy2(r"C:\test\test",r"C:\test1\test")

> >
> > I cannot fathom the need for a specific function to copy from one
> > directory to another, given both complete file names. Surely if you have
> > filename1 and filename2, that should allow you to do a copy from the one
> > to the other regardless of whether either of them is in any directory or
> > whether the system has directories at all?
> > In any case, given two file names, the procedure in C is simple.
> > fopen(filename1, "rb"), fopen(filename2, "wb"), fread() from file 1 and
> > fwrite() to file 2 until you run out of data, fclose() both files.
> > That's it. No need to fret about directories.

>
> If you need your program to be as portable as possible, that's the way
> to do it. But very often there can be requirements other than
> portability.


True enough, though I doubt it's going to make much of a difference in
speed at least unless you copy a lot of files.

> If I had a need to copy a file in a C program intended
> to run under a Unix-like system, I'd invoke the "cp" command; this is
> likely (but not certain) to be faster than a pure C solution, and it
> gives me more options regarding *how* to copy the file (most of which
> are outside the scope of C). Under Windows (implied by the file names
> used by the OP), I suppose I'd use "copy" for the same reasons.


I would hesitate to call the actual program, presumably using system()
or something similar but system-specific. Most APIs should have
functions to do all that for you.

Richard
 
Reply With Quote
 
Keith Thompson
Guest
Posts: n/a
 
      07-16-2007
(Richard Bos) writes:
> Keith Thompson <kst-> wrote:

[...]
>> If I had a need to copy a file in a C program intended
>> to run under a Unix-like system, I'd invoke the "cp" command; this is
>> likely (but not certain) to be faster than a pure C solution, and it
>> gives me more options regarding *how* to copy the file (most of which
>> are outside the scope of C). Under Windows (implied by the file names
>> used by the OP), I suppose I'd use "copy" for the same reasons.

>
> I would hesitate to call the actual program, presumably using system()
> or something similar but system-specific. Most APIs should have
> functions to do all that for you.


Really? The API I'm most familiar with (Unix) doesn't provide a
function to copy an entire file, as far as I know, other than invoking
the 'cp' program.

--
Keith Thompson (The_Other_Keith) kst- <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off




Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57