IT FundamentalsA+

Windows File Systems for CompTIA A+ 220-1102

File systems define how data is stored and organized on storage media. CompTIA A+ 220-1102 tests your ability to choose the right file system for Windows, configure NTFS permissions, apply encryption, and understand how FAT32 and exFAT differ from NTFS. This guide covers every file system concept on the exam.

11
7 sections · 8 exam key points
2 practice questions

NTFS (New Technology File System)

NTFS is the default file system for Windows installations and internal hard drives. It supports files larger than 4 GB, per-file and per-folder permissions, file compression, and Encrypting File System (EFS). Max file size: 16 TB. Max volume size: 256 TB. Supports journaling (tracks changes before writing, enabling recovery after crashes). Required for Windows system drives. Supports hard links, symbolic links, alternate data streams, and disk quotas. NTFS permissions are granular: Full Control, Modify, Read & Execute, Read, Write, List Folder Contents. Permissions are inherited from parent folders by default but can be blocked. The Security tab in file Properties shows NTFS permissions.

FAT32 (File Allocation Table 32)

FAT32 is an older file system compatible with nearly every OS and device. Max file size: 4 GB (hard limit — attempting to copy a larger file fails with an error). Max volume size: 2 TB (Windows format tool limits to 32 GB; third-party tools can go higher). No built-in permissions, encryption, or journaling. Universal compatibility: Windows, macOS, Linux, game consoles, cameras, TVs. Use case: USB drives, SD cards, devices that need broad compatibility. Limitation: cannot store ISO files, large video files, or VM images larger than 4 GB.

exFAT (Extended FAT)

exFAT was designed as an upgrade to FAT32 for flash storage. Max file size: 128 PB (effectively unlimited). Max volume size: 128 PB. No permissions or journaling. Supported natively by Windows Vista SP1+, macOS 10.6.5+, Linux (via exfat-fuse or kernel 5.4+). Best use case: USB drives and SD cards that need to store files larger than 4 GB while remaining compatible with macOS. Often used for cameras and drones that output large video files.

NTFS Permissions

NTFS permissions control who can access files and folders. Key permission levels: Full Control (read, write, modify, delete, change permissions, take ownership), Modify (read, write, delete; cannot change permissions), Read & Execute (view and run files), List Folder Contents (view folder contents without opening files), Read (view file content and properties), Write (create new files and subfolders, write to files). Effective permissions: combination of all permissions assigned to a user directly and through group memberships. NTFS permissions flow from share access down — the more restrictive of share and NTFS permissions applies when accessing over a network. Deny always overrides Allow. Inheritance can be disabled per folder (Advanced Security Settings → disable inheritance).

EFS (Encrypting File System)

EFS is a built-in NTFS feature that encrypts individual files and folders at the file system level. EFS uses a certificate tied to the user account. When EFS-encrypted files are opened by the authorized user, they are transparently decrypted. Other users (even admins) see encrypted gibberish without the certificate. Key EFS facts: file color changes to green in Windows Explorer. EFS certificate must be backed up (certmgr.msc → Personal → Certificates → export). If the certificate is lost and the user account is deleted, EFS files become permanently unrecoverable. EFS is NOT available on Home editions of Windows — requires Pro or Enterprise. BitLocker encrypts the entire drive; EFS encrypts individual files. They can be used together.

Converting and Formatting File Systems

To convert FAT32 to NTFS without data loss: `convert C: /fs:ntfs` (command prompt as administrator). There is no built-in convert from NTFS to FAT32 — requires backup, format, restore. Format options in Windows: right-click drive in File Explorer → Format. Disk Management (diskmgmt.msc) for more options. Quick format: marks space as available without wiping data (recoverable). Full format: writes zeros to every sector, verifies surface. diskpart command-line tool: `select disk X`, `select partition Y`, `format fs=ntfs label=MyDrive quick`. NTFS allocation unit size (cluster size): default 4 KB for most cases. Larger clusters improve performance for large files but waste space for small files.

Linux and macOS Interoperability

Windows NTFS: macOS can read NTFS natively but write support requires third-party drivers (Paragon NTFS, Tuxera). Linux reads and writes NTFS via ntfs-3g driver. ext4 (Linux native file system): Windows cannot read ext4 without third-party software (ext2fsd, Linux Reader). exFAT is the recommended cross-platform format for drives shared between Windows, macOS, and Linux. HFS+ and APFS (macOS native): Windows cannot read these without third-party software (HFSExplorer, Paragon HFS+).

Key exam facts — A+

  • NTFS is required for Windows system drives and supports permissions, EFS, journaling, and files >4 GB
  • FAT32 max file size is 4 GB — exam often tests this as the reason a file copy fails
  • exFAT: no file size limit, compatible with Windows/macOS/Linux, ideal for large flash storage
  • NTFS Deny permission always overrides Allow
  • EFS encrypts individual files; BitLocker encrypts entire drives
  • Convert FAT32 to NTFS: `convert C: /fs:ntfs`
  • EFS not available on Windows Home editions
  • Effective NTFS permissions = combination of all group memberships; most restrictive applies over network

Common exam traps

Practice questions — Windows File Systems

These questions are representative of what you will see on A+ exams. The correct answer and explanation are shown immediately below each question.

Q1.

A.A. The USB drive is full
B.B. The USB drive is formatted as FAT32
C.C. The USB drive is formatted as NTFS
D.D. The file is corrupted

Explanation: FAT32 has a hard 4 GB per-file limit. A 6 GB ISO exceeds this limit. Reformatting to exFAT or NTFS resolves the issue.

Q2.

A.A. format C: /fs:ntfs
B.B. convert C: /fs:ntfs
C.C. diskpart /convert ntfs
D.D. chkdsk C: /convert

Explanation: The `convert` command converts FAT or FAT32 to NTFS without erasing data. The `format` command erases all data.

Frequently asked questions — Windows File Systems

When should I use exFAT vs NTFS for a USB drive?

Use exFAT when the drive will be used with both Windows and macOS/Linux, or with devices like cameras that don't support NTFS. Use NTFS when the drive is Windows-only and you need permissions or files larger than what exFAT concerns apply to (NTFS supports permissions; exFAT does not).

Practice this topic

Test yourself on Windows File Systems

JT Exams routes you to questions in your exact weak areas — automatically, after every session.

No credit card · Cancel anytime

Related certification topics