Operating systemsBeginner26 min read

What Is File Explorer in Operating Systems?

Reviewed byJohnson Ajibi· Senior Network & Security Engineer · MSc IT Security
On This Page

Quick Definition

File Explorer is the built-in application in Windows that helps you see and manage all the files, folders, and drives on your computer. You can use it to open, move, copy, rename, or delete files. It also shows you storage drives, network locations, and connected devices like USB drives. Think of it as a visual map of everything stored on your computer.

Commonly Confused With

File ExplorervsWindows Shell (explorer.exe)

The Windows Shell is the overall graphical interface that includes the desktop, taskbar, and Start menu, all managed by the explorer.exe process. File Explorer is just one component of that shell, focused specifically on file management. You can restart the shell without losing File Explorer windows, but if you kill explorer.exe, you lose both.

When you right-click the Start button and select 'Task Manager', that is the shell. When you open a folder, that is File Explorer.

File ExplorervsCommand Prompt (cmd) or PowerShell

Command Prompt and PowerShell are text-based interfaces for interacting with the file system. File Explorer is a graphical interface. The same tasks (copying, moving, deleting files) can be done in both, but File Explorer is easier for visual users while command-line tools are more powerful for scripting and automation.

To copy a file, you can drag it in File Explorer, or type 'copy source destination' in Command Prompt.

File ExplorervsDisk Management (diskmgmt.msc)

Disk Management is a system tool for managing physical drives, partitions, and volumes. File Explorer shows you the logical drives (like C:, D:) and their contents. Disk Management allows you to create, delete, format, or shrink partitions. File Explorer does not perform these low-level disk operations.

If you need to create a new partition on a hard drive, you use Disk Management, not File Explorer. If you want to see files inside that partition, you use File Explorer.

Must Know for Exams

File Explorer is a foundational topic for several general IT certification exams, including CompTIA A+, Microsoft 365 Certified: Endpoint Administrator Associate, and foundational-level Microsoft Windows exams. Although it may seem simple, exam questions often test more than just how to open it. For CompTIA A+ (Core 1 and Core 2), File Explorer appears in exam objectives related to operating system features, file management, and troubleshooting. For example, you might be asked how to show hidden files and folders, how to configure folder options, or how to map a network drive. These are all actions performed within File Explorer. The exam expects you to know the exact steps and menu locations, such as that the 'Show hidden files' option is in the View tab of Folder Options.

For Microsoft 365 exams like MD-102 (Microsoft 365 Endpoint Administrator), File Explorer is relevant for managing endpoint devices. Questions may involve configuring File Explorer settings via Group Policy or the Settings app, such as disabling the Quick Access feature or controlling default save locations. There may also be questions about using File Explorer to access shared network folders, which ties into understanding SMB shares and user permissions. Understanding how File Explorer interacts with OneDrive is also tested, particularly in scenarios involving cloud file synchronization, folder backup, and conflict resolution.

In exam questions, you may encounter scenarios like 'A user reports that they cannot see any files in a shared folder. Which File Explorer feature should you check first?' The answer often relates to permissions, the viewing of hidden files, or the use of the 'Search' feature. Another common question type involves troubleshooting File Explorer crashes: 'After a recent update, the desktop icons and taskbar disappear. Which process should you restart in Task Manager?' The correct process is explorer.exe. Knowing keyboard shortcuts like Windows key + E to open a new File Explorer window is also tested.

File Explorer questions are typically not the hardest on the exam, but they are common and can be a trap if you rely only on intuition. The exam expects precise knowledge of where options are located in the ribbon interface, especially in Windows 10 and 11. You should be able to distinguish between the 'Show/hide' groups in the View tab and the 'Folder Options' dialog. Because File Explorer is a visual tool, exam creators may present screenshots and ask you to identify what a specific icon or button does. Therefore, practicing with the actual interface is crucial for exam success.

Simple Meaning

File Explorer is like a digital filing cabinet for your computer. Imagine you have a physical filing cabinet with several drawers, each drawer holds folders, and each folder contains papers. File Explorer does the same thing, but on your computer screen. It shows you all the storage areas, like your main hard drive, an external USB stick, or a network drive, as icons you can click on. When you open a drive, you see folders, and when you open a folder, you see files. You can create new folders to keep your files organized, just like you might use different folders in a real cabinet for bills, schoolwork, or recipes. You can also move files from one folder to another by dragging them, or copy a file to make a duplicate. If you need to get rid of a file, you can delete it, and it goes to the Recycle Bin, which is like a temporary trash can. You can also search for files using the search box at the top right. File Explorer also shows you information about each file, such as its size, the date it was last modified, and what kind of file it is, like a picture, a document, or a video. The left side of the window usually has a navigation pane that shows shortcuts to common folders like Documents, Downloads, Pictures, and Desktop, so you can jump to them quickly. In short, File Explorer is your main tool for finding and managing anything stored on your computer.

Think of your computer as a giant apartment building. Each apartment is a drive or a folder. File Explorer is the directory in the lobby that shows you which apartments exist, who lives there (the files), and a map of the hallways (folder paths) to reach them. Without it, you would have to remember exact addresses for every file, which would be very hard. File Explorer makes it visual and simple, so you can just click your way to the file you want.

Full Technical Definition

File Explorer, historically known as Windows Explorer, is a graphical user interface (GUI) component of the Microsoft Windows operating system that provides a hierarchical view of the file system. It is built upon the Windows Shell and uses the Explorer.exe process to render the desktop, taskbar, and file management windows. The core functionality is centered around the Shell API, which handles the namespace, drag-and-drop operations, and context menus. File Explorer integrates with the NTFS file system, which is the primary file system for modern Windows versions, supporting features like file permissions, encryption (EFS), compression, and alternate data streams. It also interacts with other file systems such as FAT32, exFAT, and ReFS depending on the storage media.

From a technical perspective, File Explorer uses a tree-view control in the left pane to display the namespace hierarchy, which includes drives, network locations, and special folders like Libraries and Quick Access. The right pane typically shows a list or details view of the contents of the selected location. The underlying structure is based on the Shell namespace, which is a virtual tree that includes both file system objects and virtual objects such as the Control Panel, Recycle Bin, and network printers. The Shell namespace is implemented via IShellFolder interfaces, which allow the operating system to navigate and display items from different providers such as the local file system, network shares, or cloud storage integrations like OneDrive.

File Explorer supports various view modes: Details, List, Small Icons, Medium Icons, Large Icons, Extra Large Icons, Tiles, and Content. The Details view presents columns for Name, Date Modified, Type, Size, and other file attributes. Users can customize these columns and sort or group items by any attribute. The search functionality uses the Windows Search service, which maintains an index of file content and metadata to enable fast queries. Behind the scenes, File Explorer uses the Windows API functions such as FindFirstFile, FindNextFile, and FindClose to enumerate directory contents. It also relies on the Shell's copy engine for file operations, which can handle progress dialogs, conflict resolution, and undo operations via the IFileOperation interface.

For IT professionals, understanding File Explorer's behavior is critical for administering user environments. Group Policy settings (e.g., via Administrative Templates) can control many aspects of File Explorer, including hiding drives, removing context menu items, disabling drag-and-drop, enforcing certain view settings, and restricting access to specific folders. File Explorer can be launched with command-line parameters, such as explorer.exe /n,/e,/select, to open specific views or highlight files. It also supports shell commands like shell:AppsFolder to access special namespace locations. In enterprise environments, users often need to map network drives or access DFS shares, which File Explorer displays under the Network node. Understanding how File Explorer caches network credentials and handles offline files (Client Side Caching) is also important for troubleshooting connectivity issues.

Real-Life Example

Think about organizing your physical desk at home. You have a drawer that holds all your important papers. Inside that drawer, you might have folders labeled 'Bills', 'School Notes', and 'Tax Documents'. Each folder contains specific papers. File Explorer works exactly like that desk drawer and those folders. Your computer's hard drive is the large drawer, folders inside it are the labeled folders, and the files are the individual papers. You use File Explorer to open the drawer, look inside each folder, pull out a paper (open a file), put a new paper into a folder (save a file), or throw a paper into the trash (delete a file).

Imagine you are looking for a specific receipt from a purchase you made last month. Without a filing system, you would have to sort through every single paper on your desk to find it. With File Explorer, you can open the 'Receipts' folder, and if you have even more organization, you can create subfolders by month like 'January Receipts', 'February Receipts', etc. You can also use the search bar at the top right of File Explorer to type 'receipt' and it will instantly find every file that has that word in its name or content. This is like having a super-powered assistant who knows exactly where every paper is and can grab it for you in seconds.

Now, think about labeling. In the physical world, you write on the tab of a folder with a marker. In File Explorer, you give a folder a name, like 'Vacation Photos 2024'. The difference is that you can also add 'tags' to files inside File Explorer, which is like putting a sticky note on a folder with additional keywords. For example, you could tag all photos from a specific trip with 'Beach' and 'Summer' so that even if the folder is named differently, you can still search for all files tagged 'Beach'. This digital flexibility makes File Explorer much more powerful than a physical filing cabinet because it can find things based on properties and content, not just location.

Why This Term Matters

File Explorer matters because it is the primary tool for interacting with a computer's file system, and for IT professionals, mastering it is essential for efficient troubleshooting, user support, and system administration. When an end user cannot find a document, an IT support technician must guide them through File Explorer to locate it, often using the search feature or navigating through known folder paths like `C:\Users\%username%\Documents`. Understanding how File Explorer displays drives, network locations, and system folders (like AppData or ProgramData) helps in diagnosing problems such as missing files, permission errors, or corrupt installations.

From a security perspective, File Explorer shows file permissions and ownership through the Security tab in file properties, which is critical for managing access control. IT administrators frequently use File Explorer to audit permissions, move data between servers, and manage shared folders over the network. The ability to show hidden files and system files (by enabling those options in the View tab) is vital for finding malware or configuration files that are otherwise invisible. File Explorer also acts as the primary interface for accessing mapped network drives, which is a common setup in corporate environments.

File Explorer is deeply integrated with the Windows operating system. Its stability and responsiveness directly affect user productivity. When File Explorer crashes or freezes, it can cause significant downtime. IT professionals need to know how to restart the Explorer.exe process via Task Manager to recover the desktop and file windows without rebooting the entire computer. Understanding the relationship between File Explorer and Windows Shell is also important for customizing the user experience through Group Policy or registry modifications. Overall, File Explorer is not just a convenience; it is a fundamental tool for any IT role, from help desk to system administrator.

How It Appears in Exam Questions

Exam questions about File Explorer typically fall into several categories: navigation and management, configuration and settings, troubleshooting, and security. In navigation and management questions, you might be asked: 'Which keyboard shortcut opens File Explorer?' (Answer: Windows key + E). Or 'What is the primary purpose of the Quick Access section?' (Answer: To display frequently used folders and recently accessed files). These questions test basic functionality.

Configuration questions often involve the Folder Options dialog (also called File Explorer Options in Windows 10/11). A typical question could be: 'A technician needs to display file name extensions and hidden files. Which two options should be enabled?' The correct answers would be 'Hide extensions for known file types' (unchecked) and 'Show hidden files, folders, and drives.' The exam may also ask about 'Libraries' and how to add or remove folders from them. For example: 'A user wants to include a network folder in the Documents library. How should they proceed?' This requires knowing that you can right-click the library, select Properties, and then add a folder.

Troubleshooting questions are common. For instance: 'A user reports that the taskbar and desktop icons have disappeared, but the system is still running. Which process should be restarted?' The answer is Explorer.exe, and the method is usually via Task Manager. Another scenario: 'After installing a new application, File Explorer crashes when right-clicking on files. What is the most likely cause?' The answer might be a problematic shell extension, and the solution is to use tools like ShellExView or clean boot to identify the culprit.

Security-related questions might involve the Security tab in file Properties. For example: 'A user cannot open a file in a shared folder. Which tab in the file's Properties should the administrator check?' The answer is the Security tab to view NTFS permissions. Or: 'Which feature in File Explorer allows users to revert a file to a previous version?' The answer is the Previous Versions tab, which relies on Volume Shadow Copy or File History.

Some questions test knowledge of File Explorer's integration with cloud storage: 'A user synchronizes files with OneDrive but notices a file has a green checkmark in File Explorer. What does that mean?' (Answer: The file is fully synced.) Or: 'What does a blue cloud icon indicate?' (Answer: The file is online-only and not stored locally.) These questions are especially relevant for Microsoft 365 exams.

Overall, exam questions on File Explorer are about precise recall and practical application. They rarely ask for deep architectural details but focus on what you can do with the interface and how to fix common issues. Knowing the exact menu paths and keyboard shortcuts is a must.

Practise File Explorer Questions

Test your understanding with exam-style practice questions.

Practise

Example Scenario

You are a desktop support technician for a mid-sized company. A user named Maria calls the help desk because she cannot find a report she saved yesterday. She remembers the report was about Q3 sales and was named something like 'Q3_Report.docx'. She typically works from a folder on her desktop called 'Work Files'. You ask her to press the Windows key and the E key together, which opens File Explorer. On the left side of the File Explorer window, you see the Quick Access section, which shows 'Desktop', 'Downloads', and 'Recent files'. You ask Maria to click on 'Desktop' in the left pane. The right pane now shows all files and folders on her desktop. She sees her 'Work Files' folder. She double-clicks it to open it. The folder contains several files, but none of them are the Q3 report. The folder also has subfolders like 'Meetings', 'Invoices', and 'Projects'. Maria checks each, but still no report. You then guide her to the search box at the top right corner of File Explorer. She types 'Q3_Report' and presses Enter. File Explorer instantly shows a list of files that match that name, even if they are in a different folder. It turns out the report was accidentally saved to the 'Documents' library instead of the 'Work Files' folder. She sees the file in the search results, double-clicks it, and the document opens in Word. She is relieved.

This scenario is typical in IT support. You used File Explorer to navigate, search, and locate a missing file. Without File Explorer, Maria would have had to guess the file's location or use the command line, which would be much harder for most users. As an IT professional, you rely on File Explorer daily to guide users through file management tasks, map network drives, check file properties, and perform basic troubleshooting. The ability to quickly navigate and search using File Explorer is a core skill for any help desk role.

Now, imagine another scenario: A user reports that their 'Documents' folder is missing from the left pane in File Explorer. You suspect the folder may have been inadvertently unpinned from Quick Access. You guide them to the View tab, then select Navigation pane, and click 'Show all folders'. This restores the user's familiar view. This demonstrates that even simple settings in File Explorer can cause confusion, and IT professionals must know exactly where to find these settings.

Common Mistakes

Thinking File Explorer is just a file viewer with no deeper functions.

File Explorer is the primary interface for managing the entire file system, including permissions, mapping network drives, viewing hidden files, and configuring folder options. It is deeply integrated with the Windows Shell.

Explore all tabs (File, Home, Share, View) and the Folder Options dialog. Understand that it is a tool for both users and administrators.

Confusing File Explorer with Internet Explorer or Microsoft Edge.

File Explorer is for local and network file management, while Internet Explorer/Edge are web browsers. Their icons are different, and they serve entirely different functions.

Remember: File Explorer's icon is a yellow folder. Internet Explorer's is a blue 'e'. Edge's is a blue swirl. Use the keyboard shortcut Windows + E to open File Explorer directly.

Assuming that the Recycle Bin permanently deletes files.

Files in the Recycle Bin are still recoverable until the Recycle Bin is emptied. Deleted files are moved to the Recycle Bin, not erased from the disk immediately.

Check the Recycle Bin for recently deleted files before assuming they are lost. Right-click and select 'Restore' to return them to their original location.

Believing that the 'Search' feature in File Explorer looks at all files on the entire computer.

By default, File Explorer's search bar searches the current folder and all subfolders. It does not search the whole computer unless you specifically select 'This PC' or 'Search again in: All locations'.

To search the entire computer, click 'This PC' in the left pane before typing in the search box, or use the 'Search' tab in the ribbon to refine the scope.

Exam Trap — Don't Get Fooled

{"trap":"An exam question states: 'A user wants to view all files and folders on a USB drive, including system files and hidden files. Which exact menu sequence should they follow?' The trap answer is 'Right-click the USB drive, select Properties, then uncheck Hide protected operating system files.'

","why_learners_choose_it":"Learners often confuse the 'Folder Options' settings with drive properties. They remember that hidden files can be shown but misremember where the setting is located. They also confuse 'Show hidden files' with 'Hide protected operating system files', which is a separate checkbox."

,"how_to_avoid_it":"Know that the correct sequence is to open File Explorer, click the View tab on the ribbon, and then click the Options button (on the far right) to open Folder Options. In the View tab of that dialog, you select 'Show hidden files, folders, and drives' and uncheck 'Hide protected operating system files'. It is not in the drive's Properties."

Step-by-Step Breakdown

1

Open File Explorer

Press the Windows key + E on your keyboard. Alternatively, click the folder icon on the taskbar (usually pinned by default) or search for 'File Explorer' in the Start menu. This launches the Explorer.exe process and opens a new window showing the Quick Access view by default.

2

Navigate the Navigation Pane

The left pane shows a tree structure including Quick Access, This PC, Libraries, Network, and other locations. Click on any item to see its contents in the right pane. Quick Access contains frequently used folders and recent files. This PC shows all drives attached to the system.

3

Browse the Contents in the Right Pane

Double-click a folder to open it. Use the Back and Forward buttons (top left) to navigate through your history. The Address Bar shows your current path, and you can click on any segment of the path to jump to that parent folder. You can also type a full path directly into the Address Bar.

4

Sort, Group, and Filter Items

Click on column headers (Name, Date modified, Type, Size) in Details view to sort. Right-click on a column header to add or remove columns. Use the View tab to switch between icons, list, or details. Right-click in the pane and select 'Group by' to group files by type, date, or other attributes.

5

Perform File Operations

Select files or folders by clicking them. Use the Home tab for Copy, Paste, Cut, Delete, Rename, or New Folder. You can also right-click on a selection to access the context menu. Drag and drop items between folders to move them, or hold Ctrl while dragging to copy. Use the Share tab to share files over the network or email.

6

Search for Files

Type in the search box at the top right. File Explorer will filter the current folder and subfolders in real time. Use the Search tab to refine by date modified, kind, size, etc. For more advanced searches, use operators like kind:image or datemodified:last week.

Practical Mini-Lesson

In a professional IT environment, File Explorer is much more than just a way to browse files. It is the gateway to managing user data, configuring system settings, and troubleshooting issues. One of the less obvious but powerful features is the 'Libraries' system. Libraries aggregate content from multiple folders into a single view. For example, the 'Documents' library by default includes the user's Documents folder and may include the Public Documents folder. You can add network folders to a library, which is useful when users need a unified view of local and departmental shared files. To create a library, right-click Libraries in the navigation pane, select New, then Library, and give it a name. Then right-click the new library, select Properties, and click 'Add' to include a folder. This is a exam-relevant concept for CompTIA A+, where you might be asked how to organize files for multiple users.

Another critical area is the 'Folder Options' dialog (File Explorer Options in Windows 10/11). To access it, click the View tab in File Explorer, then click Options on the far right. The General tab controls privacy settings like showing recently used files in Quick Access. The View tab contains numerous settings that directly affect what users see. For example, unchecking 'Hide extensions for known file types' is essential for security, as it reveals the true extension of a file (e.g., .exe disguised as .pdf). Checking 'Show hidden files, folders, and drives' is necessary for locating AppData, ProgramData, or other system folders. The 'Hide protected operating system files' option is unchecked for advanced troubleshooting but left checked for regular users to prevent accidental deletion. These settings are frequently tested in exams.

Network drive mapping is another practical skill. In File Explorer, you can right-click 'This PC' and select 'Map network drive'. You need to specify a drive letter (e.g., Z:) and the UNC path (e.g., \\server\share). Optionally, you can check 'Reconnect at sign-in' and 'Connect using different credentials'. This is a common task in enterprise environments. When the network drive fails to connect, an IT professional uses File Explorer to check whether the computer can browse the network, whether the share exists, and whether permissions allow access. The 'Network' node in the navigation pane shows other computers on the network, but this relies on Network Discovery and the Function Discovery Resource Publication service. Troubleshooting network visibility often involves checking these services and firewall rules.

Permissions and sharing are also handled through File Explorer. When you right-click a folder and select Properties, the Sharing tab allows you to share the folder with other users on the network. The Security tab shows NTFS permissions, which control access at the file system level. Understanding the difference between share permissions (Share tab) and NTFS permissions (Security tab) is crucial. For example, if a user has Read access via share permissions but Full Control via NTFS permissions, the effective permission is Full Control. This interplay is a classic exam topic. To audit who has accessed a file, you can enable auditing via Group Policy and then view the Security log in Event Viewer, but the initial per-file configuration starts in File Explorer's properties.

Finally, IT professionals often use File Explorer to access special shell folders for troubleshooting. For instance, typing `%appdata%` in the address bar opens the Roaming AppData folder. Typing `%temp%` opens the temporary files folder. Typing `shell:startup` opens the Startup folder where you can add or remove programs that run at login. These shortcuts save time and are frequently used in support scenarios. Knowing these shell commands is a sign of an experienced technician and can appear in advanced exam questions.

One common issue that can go wrong is the corruption of the File Explorer view cache. Sometimes thumbnails do not display or folder icons appear blank. This can be resolved by clearing the thumbnail cache using the Disk Cleanup tool or by running `del /f /s /q /a %userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_*.db` in an administrator command prompt and then restarting Explorer.exe. Another issue is that File Explorer may freeze when accessing a network drive that is offline. In this case, the best practice is to disable the 'Automatically search for network folders and printers' setting in Folder Options, or map the drive with the 'Verify folder path and connectivity' option temporarily unchecked. These practical troubleshooting steps separate a novice from a professional.

File Explorer is not just a beginner tool. It is a powerful interface that, when understood deeply, allows IT professionals to manage user environments, configure security, map networks, and resolve complex issues efficiently. For the exams, focus on the exact menu locations, the differences between Sharing and Security tabs, and the various shell commands that speed up navigation.

Memory Tip

Remember: If you can see it, File Explorer can manage it. Keyboard = Windows + E. For hidden files, think: View tab, Options, View tab again, Show hidden files.

Covered in These Exams

Current Exam Context

Current exam versions that test this topic — use these objectives when studying.

Related Glossary Terms

Frequently Asked Questions

How do I open File Explorer on a Windows computer?

The quickest way is to press the Windows key + E on your keyboard. You can also click the folder icon on the taskbar or search for 'File Explorer' in the Start menu.

Can I change the default folder that File Explorer opens to?

Yes. Open File Explorer, click the View tab, then Options (on the far right). In the General tab, under 'Open File Explorer to:', you can select 'This PC' or 'Quick Access'. Choose the one you prefer.

Why can't I see some files in File Explorer?

They might be hidden files. Click the View tab in File Explorer, then check the 'Hidden items' checkbox. They will appear in a slightly faded or transparent color.

What is the difference between 'Copy' and 'Cut' in File Explorer?

Copy duplicates the file or folder, leaving the original in place. Cut removes it from its current location and moves it to the clipboard, and then when you paste, it moves to the new location.

How do I share a folder over the network using File Explorer?

Right-click the folder, select Properties, go to the Sharing tab, and click 'Share'. Then add the users or groups you want to share with and set their permission level (Read or Read/Write).

What should I do if File Explorer keeps crashing?

You can restart the Explorer.exe process via Task Manager (press Ctrl+Shift+Esc, find Windows Explorer, right-click and select Restart). If the issue persists, check for corrupt system files using 'sfc /scannow' or look for problematic shell extensions.

Summary

File Explorer is the graphical file management tool in Windows that allows users and IT professionals to navigate, organize, and manage files and folders across local drives, network locations, and cloud storage. It is the primary interface for performing everyday tasks such as copying, moving, renaming, and deleting files, as well as more advanced operations like setting file permissions, mapping network drives, and accessing hidden system folders. For IT certification exams, especially CompTIA A+ and Microsoft 365 Endpoint Administrator, a solid understanding of File Explorer is essential. Exam questions test not only basic navigation but also configuration of Folder Options, troubleshooting crashes, managing permissions, and leveraging shell commands.

Understanding File Explorer goes beyond knowing where to click. It involves grasping how the Windows Shell interacts with the Explorer.exe process, how the file system hierarchy is represented, and how Group Policy can control its behavior in enterprise environments. Practical skills like restarting Explorer.exe, clearing the thumbnail cache, and using shell shortcuts (like %appdata% or shell:startup) are valuable in real-world IT support and can appear on exams. One of the most common mistakes learners make is confusing File Explorer with the web browser or with the Windows Shell itself, or being unaware of the detailed settings within Folder Options.

The key takeaway for exam preparation is to spend hands-on time with File Explorer. Open it, explore every tab, change view settings, create and delete files, map a network drive, and check file properties. Knowing the exact location of the 'Show hidden files' option or the 'Map network drive' button can make the difference between a correct and incorrect answer. File Explorer is a straightforward topic, but its depth is easily underestimated. Treat it with the attention it deserves, and it will serve you well both in the exam and in your IT career.