File::Copy::Reliable - file copying and moving with extra checking


File-Copy-Reliable documentation  | view source Contained in the File-Copy-Reliable distribution.

Index


NAME

Top

File::Copy::Reliable - file copying and moving with extra checking

SYNOPSIS

Top

  use File::Copy::Reliable;
  copy_reliable( $source, $destination );
  move_reliable( $source, $destination );

DESCRIPTION

Top

File::Copy is an excellent module which handles copying and moving files. File::Copy::Reliable provides an extra level of checking after the copy or move. This might be useful if you are copying or moving to unreliable network fileservers.

At the moment this checks that the file size of the copied or moved file is the same as the source.

The exported functions throw exceptions if there was an error.

EXPORTED FUNCTIONS

Top

copy_reliable

Copies a file:

  copy_reliable( $source, $destination );

move_reliable

Moves a file:

  move_reliable( $source, $destination );

AUTHOR

Top

Leon Brocard <acme@astray.com>.

COPYRIGHT

Top

LICENSE

Top

This module is free software; you can redistribute it or modify it under the same terms as Perl itself.


File-Copy-Reliable documentation  | view source Contained in the File-Copy-Reliable distribution.