| Apache-CVS documentation | view source | Contained in the Apache-CVS distribution. |
Apache::CVS::Directory - class that implements a directory in CVS
use Apache::CVS::RcsConfig(); use Apache::CVS::Directory(); $directory = Apache::CVS::Directory->new($path, $rcs_config); $sub_directory = $directory->directories(); $version_files = $directory->files(); $other_files = $directory->plain_files();
The Apache::CVS::Directory class implements a directory in a CVS repository.
Construct a new Apache::CVS::Directory object. The first argument is the
full path of the directory. The second argument is an Apache::CVS::RcsConfig
object.
Returns a reference to an array of Apache::CVS::Directory objects which
represent subdirectories of this directory.
Returns a reference to an array of Apache::CVS:File object which
represent versioned files in this directory.
Returns a reference to an array of Apache::CVS:PlainFile object which
represent files in this directory that are not versioned.
John Barbee <barbee@veribox.net>
Copyright 2001-2002 John Barbee
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Apache-CVS documentation | view source | Contained in the Apache-CVS distribution. |