Home | History | Annotate | Download | only in tools

Lines Matching defs:directory

55 //! The path class represents the route to a file or directory in the
122 //! \brief Checks whether this path points to the root directory or not.
125 //! directory or not. The checks made by this are extremely simple (so
178 class directory;
295 // The "directory" class.
299 //! \brief A class representing a file system directory.
301 //! The directory class represents a group of files in the file system and
302 //! corresponds to exactly one directory.
304 class directory : public std::map< std::string, file_info > {
307 //! \brief Constructs a new directory.
309 //! Constructs a new directory object representing the given path.
310 //! The directory must exist at creation time as the contents of the
313 directory(const path&);
316 //! \brief Returns the file names of the files in the directory.
318 //! Returns the leaf names of all files contained in the directory.
319 //! I.e. the keys of the directory map.
366 //! \brief Removes an empty directory.