Indexed
Indexed
---
A file system is a method used by an operating system to organize and store files on storage dev
1. **File**:
- A file is a collection of data stored in a unit that can be identified by a name. Files can contain
2. **Directory**:
- A directory is a container used to organize files into a hierarchical structure, often represented
3. **File Operations**:
- **Create**: A new file is created.
- **Read**: A file's data is accessed.
- **Write**: Data is written to a file.
- **Delete**: A file is removed from storage.
- **Append**: Additional data is added to a file without overwriting it.
4. **File Attributes**:
- **Name**: The name of the file.
- **Type**: The format or kind of file (e.g., .txt, .exe).
- **Size**: The amount of space the file occupies.
- **Location**: The physical address of the file on storage.
- **Permissions**: Access control settings (e.g., read, write, execute).
- **Timestamps**: Metadata indicating when the file was created, modified, or last accessed.
---