Lines Matching full:directory
31 * @brief Enumeration for directory entry types
36 /** Identifier for directory entry */
96 /** Mount point directory name (ex: "/fatfs") */
112 * @brief Structure to receive file or directory information
114 * Used in functions that read the directory entries to get
115 * file or directory information.
119 * File/directory type (FS_DIR_ENTRY_FILE or FS_DIR_ENTRY_DIR)
122 /** Name of file or directory */
124 /** Size of file (0 if directory). */
312 * Deletes the specified file or directory
314 * @param path Path to the file or directory to delete
326 * @brief Rename file or directory
330 * directory. All intermediate directories in the destination path must
333 * directory. If an object already exists at the specified destination path,
468 * @brief Directory create
470 * Creates a new directory using specified path.
472 * @param path Path to the directory to create
476 * @retval -EROFS if @p path is within read-only directory, or when
484 * @brief Directory open
486 * Opens an existing directory specified by the path.
488 * @param zdp Pointer to the directory object
489 * @param path Path to the directory to open
492 * @retval -EINVAL when a bad directory path is given;
500 * @brief Directory read entry
502 * Reads directory entries of an open directory. In end-of-dir condition,
506 * special directory entries "." or "..". For consistency the
510 * @param zdp Pointer to the directory object
514 * @retval -ENOENT when no such directory found;
521 * @brief Directory close
523 * Closes an open directory.
525 * @param zdp Pointer to the directory object
582 * the directory name of the mount point at the given @p index.
583 * On success @p index is incremented and @p name is set to the mount directory
596 * @brief File or directory status
598 * Checks the status of a file or directory specified by the @p path.
601 * @param path Path to the file or directory
603 * directory exists.
606 * @retval -EINVAL when a bad directory or file name is given;
607 * @retval -ENOENT when no such directory or file is found;
618 * @param path Path to the mounted directory
623 * @retval -EINVAL when a bad path to a directory, or a file, is given;