Skip Menu |

This queue is for tickets about the File-Copy-Vigilant CPAN distribution.

Report information
The Basics
Id: 51800
Status: rejected
Worked: 15 min
Priority: 0/
Queue: File-Copy-Vigilant

People
Owner: KILNA [...] cpan.org
Requestors: edoardo.fiamingo [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: bug for File-Copy-Vigilant
Date: Sat, 21 Nov 2009 23:52:33 +0100
To: bug-File-Copy-Vigilant [...] rt.cpan.org
From: Edoardo Pietro Fiamingo <edoardo.fiamingo [...] gmail.com>
dear Anthony Kilna, i'm tryin using your File::Copy::Vigilant, the bug i'm advising to you is that "move_vigilant, move, mv" doesn't move but only copy (probably unlink?). for example this little script: #!/usr/bin/perl -w #------------------------------------ use strict; use File::Copy::Vigilant qw(cp mv); # non editable vars ------- my $sour = $ARGV[0]; my $dest = $ARGV[1]; mv( $sour, $dest ); I discovered your module while i was creating a similar...so tried your File::Copy::Vigilant but found this bug. Did you got any other advises? Good bye. Edward from italy.
Subject: Re: [rt.cpan.org #51800] bug for File-Copy-Vigilant
Date: Sat, 21 Nov 2009 21:43:18 -0800
To: bug-File-Copy-Vigilant [...] rt.cpan.org
From: Kilna <kilna [...] kilna.com>
I'm not near a computer... I will check this out some time in the next couple of days On Nov 21, 2009 2:53 PM, "Edoardo Pietro Fiamingo via RT" < bug-File-Copy-Vigilant@rt.cpan.org> wrote: Sat Nov 21 17:52:55 2009: Request 51800 was acted upon. Transaction: Ticket created by edoardo.fiamingo@gmail.com Queue: File-Copy-Vigilant Subject: bug for File-Copy-Vigilant Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: edoardo.fiamingo@gmail.com Status: new Ticket <URL: http://rt.cpan.org/Ticket/Display.html?id=51800 > dear Anthony Kilna, i'm tryin using your File::Copy::Vigilant, the bug i'm advising to you is that "move_vigilant, move, mv" doesn't move but only copy (probably unlink?). for example this little script: #!/usr/bin/perl -w #------------------------------------ use strict; use File::Copy::Vigilant qw(cp mv); # non editable vars ------- my $sour = $ARGV[0]; my $dest = $ARGV[1]; mv( $sour, $dest ); I discovered your module while i was creating a similar...so tried your File::Copy::Vigilant but found this bug. Did you got any other advises? Good bye. Edward from italy.
Upon review, this was something I knew when I wrote the module. If you'd just like to perform a filesystem move use the "move" from File::Copy. If you'd like a copy-and-verify-with-unlink then use this module.