Lines Matching full:directory
5 * Recursively reads a directory
28 * @version CVS: $Id: Directory.php,v 1.21 2005/07/07 12:24:58 vincentlascaux Exp $
36 * Recursively reads a directory
41 * @var String URL of the directory that must be read
44 var $directory; variable in File_Archive_Reader_Directory
59 * $directory is the path of the directory that must be read
64 function File_Archive_Reader_Directory($directory, $symbolic='', argument
68 $this->directory = empty($directory) ? '.' : $directory;
96 $this->directoryHandle = opendir($this->directory);
99 "Directory {$this->directory} not found"
119 $current = $this->directory.'/'.$file;
164 $writer = new File_Archive_Writer_Files($this->directory);
193 $writer->basePath = $this->directory;
209 $writer = new File_Archive_Writer_Files($this->directory);