3.2 Compare and contrast components of an operating system.
📘CompTIA ITF+ (FC0-U61)
File management is how an operating system organizes, stores, and controls access to files and folders on a computer or server. It ensures that data can be saved, located, and used efficiently.
The main parts we will cover are: folders/directories, file types and extensions, and permissions.
1. Folders / Directories
- Definition:
A folder (also called a directory) is a container that stores files and can also contain other folders (subfolders). It’s like a digital “bucket” that keeps related files together. - Purpose in IT environments:
- Keeps data organized.
- Makes it easy to find and manage files.
- Helps IT teams maintain structured storage for users, projects, or departments.
- Example in IT context:
- On a company server, you might have: /Marketing
/Reports
/Campaigns
/IT
/Configs
/Logs Here, folders help separate different departments and types of files for easy access.
- On a company server, you might have: /Marketing
- Key points:
- Folders can be nested (folders inside folders).
- Operating systems show folder hierarchy in a tree structure, making navigation easier.
2. File Types and Extensions
- Definition:
A file type identifies what kind of data the file holds. A file extension is the suffix at the end of a file name (after a dot) that tells the OS and applications how to open it. - Common file extensions in IT environments: File TypeExtensionDescriptionText documents.txt, .docxWord documents or plain text filesSpreadsheets.xls, .xlsxMicrosoft Excel spreadsheetsImages.jpg, .png, .gifPictures used in web or reportsConfiguration files.ini, .cfgFiles that store settings for apps or serversScripts.bat, .sh, .pyAutomation scripts for IT tasksCompressed files.zip, .rarFiles packed to save space or transfer easily
- Purpose in IT environments:
- Ensures that applications open the correct type of file.
- Helps automate processes, like batch scripts opening
.csvfiles to update databases.
- Key points:
- Renaming a file without changing its extension can make it unusable.
- The OS uses the extension to associate the file with the right program.
3. File Permissions
- Definition:
Permissions control who can read, write, or execute a file or folder. They are essential for security and preventing unauthorized changes. - Types of permissions:
- Read (R) – User can view the contents.
- Write (W) – User can modify or delete the file.
- Execute (X) – User can run the file as a program or script.
- Permission examples in IT environments:
- On a shared company server:
- Finance folder: Only the finance team has write access.
- Company policies file: All employees can read, but only HR can update.
- On Linux/Unix systems, permissions are set using rwx for owner, group, and others: -rw-r–r– file.txt
- Owner can read/write, group can read, others can read.
- On a shared company server:
- Purpose in IT environments:
- Protect sensitive data (like financial reports, server configs).
- Prevent accidental changes or deletion.
- Enforce IT security policies for compliance.
Summary for Exam
| Concept | Key Points for ITF+ Exam |
|---|---|
| Folders / Directories | Organize files, can have subfolders, represented in a tree structure. |
| File Types & Extensions | Identify file content, guide OS/application, common types include .txt, .docx, .xls, .jpg, .cfg, .zip. |
| Permissions | Control access: Read (R), Write (W), Execute (X); prevent unauthorized access; essential for IT security. |
Tip for the exam: Remember that file management isn’t just about storing files—it’s about organizing, identifying, and protecting data. Think in terms of IT workflows, like servers, shared drives, and automated scripts.
