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


VCS-LibCVS documentation  | view source Contained in the VCS-LibCVS distribution.

Index


NAME

Top

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

SYNOPSIS

Top

DESCRIPTION

Top

Represents a directory in the CVS repository.

SUPERCLASS

Top

VCS::LibCVS::RepositoryFileOrDirectory

INSTANCE ROUTINES

Top

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

Top

  VCS::LibCVS


VCS-LibCVS documentation  | view source Contained in the VCS-LibCVS distribution.