1 #ifndef FILESYS_DIRECTORY_H
2 #define FILESYS_DIRECTORY_H
6 #include "devices/disk.h"
8 /* Maximum length of a file name component.
9 This is the traditional UNIX maximum length.
10 After directories are implemented, this maximum length may be
11 retained, but much longer full path names must be allowed. */
16 bool dir_create (disk_sector_t sector, size_t entry_cnt);
17 bool dir_open (struct inode *, struct dir **);
18 bool dir_open_root (struct dir **);
19 void dir_close (struct dir *);
20 bool dir_lookup (const struct dir *, const char *name, struct inode **);
21 bool dir_add (struct dir *, const char *name, disk_sector_t);
22 bool dir_remove (struct dir *, const char *name);
23 void dir_list (const struct dir *);
25 #endif /* filesys/directory.h */