Lines Matching defs:directory
59 //! The path class represents the route to a file or directory in the
141 //! \brief Checks whether this path points to the root directory or not.
144 //! directory or not. The checks made by this are extremely simple (so
202 class directory;
323 // The "directory" class.
327 //! \brief A class representing a file system directory.
329 //! The directory class represents a group of files in the file system and
330 //! corresponds to exactly one directory.
332 class directory : public std::map< std::string, file_info > {
335 //! \brief Constructs a new directory.
337 //! Constructs a new directory object representing the given path.
338 //! The directory must exist at creation time as the contents of the
341 directory(const path&);
344 //! \brief Returns the file names of the files in the directory.
346 //! Returns the leaf names of all files contained in the directory.
347 //! I.e. the keys of the directory map.
380 //! \brief Removes an empty directory.