Delphi and Kylix

Moderators: pritaeas
Number of threads: 7244
Number of posts: 19051

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Re: backup/restoration of files Posted by sarkiemarkie on 14 Feb 2006 at 10:38 AM
: : i know that to create a backup, i could make a new file identical to the onw i want to copy and then actually gather the data from the file and copy it all into the new one and therefore creating a backup but is there any easier way?
: :
: : Doing it the way i have explained is a lot of code and is very confusing. I mean, in windows, you could simply copy and paste the file and i was thinking along those lines.
: :
: : HELP
: :
: :
: :
: You could use the CopyFile() API function. Or you could open 2 TFileStream objects and call the CopyFrom() method. Here is the code for the stream variant:
:
:   Source := TFileStream.Create(SourceFileName, fmOpenRead);
:   Dest := TFileStream.Create(DestFileName, fmCreate);
:   Dest.CopyFrom(Source, Source.Size);
:   Dest.Free;
:   Source.Free;
: 

:


How does the copyfile() API function work
Thread Tree
sarkiemarkie backup/restoration of files on 12 Feb 2006 at 7:35 AM
zibadian Re: backup/restoration of files on 12 Feb 2006 at 10:03 AM
sarkiemarkie Re: backup/restoration of files on 14 Feb 2006 at 10:38 AM
zibadian Re: backup/restoration of files on 14 Feb 2006 at 10:42 AM
sarkiemarkie Re: backup/restoration of files on 14 Feb 2006 at 11:04 AM
zibadian Re: backup/restoration of files on 14 Feb 2006 at 11:58 AM
sarkiemarkie Re: backup/restoration of files on 14 Feb 2006 at 12:13 PM
zibadian Re: backup/restoration of files on 14 Feb 2006 at 1:13 PM
sarkiemarkie Re: backup/restoration of files on 14 Feb 2006 at 1:23 PM
zibadian Re: backup/restoration of files on 14 Feb 2006 at 2:55 PM
sarkiemarkie Re: backup/restoration of files on 15 Feb 2006 at 3:30 AM
zibadian Re: backup/restoration of files on 15 Feb 2006 at 4:35 AM
sarkiemarkie Re: backup/restoration of files on 15 Feb 2006 at 12:37 PM



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.