my $outfile =
File::Spec->catfile( $file_path, $file->{$_}->{filename} );
File::Copy::copy( $file->{$_}->{handle}, $outfile );
+
+ $self->_file_column_callback($file->{$_},$ret,$_);
}
}
}
+=head1 METHODS
+
+=cut
+
+
+=head2 _file_column_callback ($file,$ret,$target)
+
+method made to be overridden for callback purposes.
+
+=cut
+
+sub _file_column_callback {
+ my ($self,$file,$ret,$target) = @_;
+}
+
=head1 NAME
DBIx::Class::FileColumn - FileColumn map files from the Database to the filesystem.