-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectoryEntry.h
More file actions
30 lines (26 loc) · 800 Bytes
/
Copy pathDirectoryEntry.h
File metadata and controls
30 lines (26 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**************************************************************
* Class:: CSC-415-02 Spring 2024
* Name:: Tushin Kulshreshtha, Hayden Coke, Eric Khuong,
* Thanh Duong
* Student IDs:: 922180763, 921741974, 923406338, 922438176
* GitHub-Name:: Dextron04, crowcode17, ekhuong, DanielDoubleDx
* Group-Name:: Something Simple
* Project:: Basic File System
*
* File:: DirectoryEntry.h
*
* Description:: The files defines the structure for directory entries.
*
**************************************************************/
#ifndef _DIRECTORY_ENTRY_H
#define _DIRECTORY_ENTRY_H
#include <stdbool.h>
typedef struct DirectoryEntry {
bool isDirectory;
char dirName[239];
unsigned int size;
unsigned int location;
unsigned int dateCreated;
unsigned int dateModified;
} DirectoryEntry;
#endif