Wx::Perl::FSHandler::UNC - A filesystem handler for UNC filepaths |
Wx::Perl::FSHandler::UNC - A filesystem handler for UNC filepaths
use Wx::Perl::FSHandler::UNC; Wx::FileSystemHandler::AddHandler( new Wx::Perl::FSHandler::UNC );
Wx::Perl::FSHandler::UNC is a wxFileSystemHandler. The default file system handlers don't appear to support UNC file paths since the slashes are un-microsoft'd by default.
See SYNOPSIS for usage.
IO::File is used to open files given a UNC file path.
This module overrides two methods of wxFileSystemHandler: CanOpen()
and
OpenFile().
This handler opens files only in read-only mode.
FindFirst()
and FindNext()
are not implemented. They will need to be if
wildcards are being used.
Simon Flack <cpan _at_ bbc _dot_ co _dot_ uk>
wxWidgets: wxFileSystem, wxFSFile, wxFileSystemHandler, wxFileSystem Overview
wxPerl http://wxperl.sourceforge.net
the Wx::Perl::FSHandler::LWP manpage
(c) BBC 2005. This program is free software; you can redistribute it and/or modify it under the GNU GPL.
See the file COPYING in this distribution, or http://www.gnu.org/licenses/gpl.txt
Wx::Perl::FSHandler::UNC - A filesystem handler for UNC filepaths |