Geo::GDAL::FFI::VSI::File - A GDAL virtual file
my $vsifile = Geo::GDAL::FFI::VSI::File->Open($name, $access);
Open a virtual file. $name is the name of the file to open. $access is 'r', 'r+', 'a', or 'w'. 'r' is the default.
Returns a Geo::GDAL::FFI::VSI::File object.
Closes the file handle. Is done automatically when the object is destroyed.
Read $len bytes from the file. Returns the bytes in a Perl string. $len is optional and by default 1.
Write the Perl string $buf into the file. Returns the number of succesfully written bytes.
This software is released under the Artistic License. See perlartistic.
Ari Jolma - Ari.Jolma at gmail.com
Geo::GDAL::FFI
Alien::gdal, FFI::Platypus, http://www.gdal.org
To install Geo::GDAL::FFI, copy and paste the appropriate command in to your terminal.
cpanm
cpanm Geo::GDAL::FFI
CPAN shell
perl -MCPAN -e shell install Geo::GDAL::FFI
For more information on module installation, please visit the detailed CPAN module installation guide.