VFS - A virtual filesystem layer for Perl


VFS documentation Contained in the VFS distribution.

Index


Code Index:

NAME

Top

VFS - A virtual filesystem layer for Perl

SYNOPSIS

Top

	Unimplemented.

DESCRIPTION

Top

An implementation of a virtual file system in Perl. It will allow creation, reading and writing of files, mounting of systems in other systems, ...


VFS documentation Contained in the VFS distribution.

package VFS;

use strict;
use vars qw($VERSION);
use VFS::Filesystem;
use VFS::File;

$VERSION = "0.01";

1;