
VCS::LibCVS::RepositoryDirectory - A Directory in the repository.


Represents a directory in the CVS repository.

VCS::LibCVS::RepositoryFileOrDirectory

@r_files = $r_dir->get_files({ Recursive => 0 })
Return a complete list of CVS files, regardless of which branches they are on, and whether they are alive or dead. The Recursive option may be set, to return all files in all subdirectories also, or the default which is to return only files in this directory.
Available options are: "Recursive".
$r_file = $r_dir->get_file($name)
Return a single named repository file, which is in this directory. If there's no such file in this directory, an exception is thrown.
@r_files = $r_dir->get_directories()

VCS::LibCVS