Windows and Linus Organisation
Windows and Linus Organisation
A file system is a method used by operating systems to organize and store data on storage
devices, such as hard drives, solid-state drives (SSDs), USB drives, and other storage media. It
provides a structure for storing, retrieving, and managing files and directories.
• exFAT (Extended File Allocation Table): This is a more recent version of FAT designed
to address limitations like file size restrictions. It's often used on flash drives and external
storage that need to be compatible with different operating systems like Windows and
Mac. exFAT offers better compatibility than NTFS but lacks advanced security features.
(linux-vs-windows-file-system-explain, 2023)
The directory system in Windows refers to the organization of files and folders on a storage
device, typically a hard drive or SSD, using a hierarchical structure. (linux-vs-windows-file-
system-explain, 2023) The primary directories and key components of the Windows directory
system are as follows:
1. Drive Letters: In Windows, each storage device or partition is assigned a drive letter
(e.g., C:, D:, E:). The C: drive is traditionally used for the system or primary partition.
2. Root Directory (C:): The root directory of the C: drive is the top-level directory in the
file system hierarchy. It contains system files, directories, and key configuration files.
3. Windows Directory (C:\Windows): The Windows directory contains the core operating
system files and system folders. It includes the Windows kernel, system libraries, device
drivers, and other essential components.
4. Program Files (C:\Program Files): This directory is where most software applications
are installed. Each application typically has its own subdirectory within Program Files.
5. Program Files (x86) (C:\Program Files (x86)): On 64-bit versions of Windows, this
directory is used for 32-bit applications. 64-bit applications are installed in the regular
Program Files directory.
6. Users (C:\Users): The Users directory stores user profiles and user-specific data. Each
user has their own subdirectory within Users, named after their username.
7. Documents (C:\Users[Username]\Documents):The Documents directory is a default
location for storing user documents, such as text files, spreadsheets, and presentations.
8. Downloads (C:\Users[Username]\Downloads): The Downloads directory is where files
downloaded from the internet are typically saved by default.
9. Desktop (C:\Users[Username]\Desktop): The Desktop directory is where the user’s
desktop icons and files are stored. It serves as a convenient location for quick access to
frequently used items.
10. AppData (C:\Users[Username]\AppData): The AppData directory contains application
data and settings specific to each user. It is divided into three subdirectories: Roaming,
Local, and LocalLow.
11. System32 (C:\Windows\System32): The System32 directory contains crucial system
files and dynamic link libraries (DLLs) required for the Windows operating system to
function.
12. ProgramData (C:\ProgramData): ProgramData is a system-wide application data
directory that stores settings and data shared among all users on the computer.
13. Temp (C:\Windows\Temp): The Temp directory is used for storing temporary files. It is
often used by applications during installation or by the system for various temporary
tasks.