(Perl) Copy a File using a Stream
Nobody would actually copy a file using this method. The purpose of this example is to demonstrate the SourceFile and SinkFile properties, and the RunStream method.
When RunStream is called, the source is read until the end-of-stream condition occurs. All incoming data is copied to the stream's sink. In this example the sink is also a file. A typical application might employ a file as the source or sink, but not both. Usually one side of the stream will be the application itself reading or writing, or perhaps another stream object.
use chilkat();
$stream = chilkat::CkStream->new();
$stream->put_SourceFile("qa_data/hamlet.xml");
$stream->put_SinkFile("qa_output/hamlet_copy.xml");
$success = $stream->RunStream();
if ($success != 1) {
print $stream->lastErrorText() . "\r\n";
exit;
}
print "File copied." . "\r\n";
|