The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

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

SYNOPSIS

DESCRIPTION

Represents a directory in the CVS repository.

SUPERCLASS

VCS::LibCVS::RepositoryFileOrDirectory

INSTANCE ROUTINES

get_files()

@r_files = $r_dir->get_files({ Recursive => 0 })

argument 1 type: hash ref to options
return type: list of VCS::LibCVS::RepositoryFile

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".

get_file()

$r_file = $r_dir->get_file($name)

argument 1 type: scalar string, the name of the file.
return type: VCS::LibCVS::RepositoryFile

Return a single named repository file, which is in this directory. If there's no such file in this directory, an exception is thrown.

get_directories()

@r_files = $r_dir->get_directories()

return type: list of VCS::LibCVS::RepositoryDirectory

SEE ALSO

  VCS::LibCVS