Lines Matching full:directory
52 * in directory "dirname".
103 * Directory entry types, matches the subset of DT_x in posix readdir()
106 #define FS_DT_DIR 4 /* directory */
111 * A directory entry, returned by fs_readdir(). Returns information
112 * about the file/directory at the current directory entry position.
128 * fs_opendir - Open a directory
130 * @filename: the path to directory to open
131 * @return a pointer to the directory stream or NULL on error and errno
137 * fs_readdir - Read the next directory entry in the directory stream.
140 * directory entry is no longer valid after calling fs_readdir() again.
141 * After fs_closedir() is called, the returned directory entry is no
144 * @dirs: the directory stream
145 * @return the next directory entry (only valid until next fs_readdir() or
147 * the directory is reached.
152 * fs_closedir - close a directory stream
154 * @dirs: the directory stream
159 * fs_unlink - delete a file or directory
161 * If a given name is a directory, it will be deleted only if it's empty
163 * @filename: Name of file or directory to delete
169 * fs_mkdir - Create a directory
171 * @filename: Name of directory to create