in reply to Re: File::Monitor Question
in thread File::Monitor Question

OK, I'm getting closer. I changed the line above of
print $file->name, " created\n";
to
print $file->files_created, " created\n";
and now it is printing the newly created file. Now I am having a problem getting the name of that file saved as a variable. I'm not experienced enough to understand how this thing works. I thought I could just do this:
$new_file = $file->files_created
But that doesn't work. How can I save that to a variable that I can work with?

Replies are listed 'Best First'.
Re^3: File::Monitor Question
by Anonymous Monk on Nov 18, 2015 at 16:37 UTC
    I used: my $file = @{$change->{delta}->{files_created}}[0]; and it worked. BR