Access Windows 11 Files from WSL Linux Terminal

Windows Subsystem for Linux (WSL) automatically mounts your local Windows drives into the Linux environment, allowing you to view, edit, and execute Windows 11 files directly from your Linux command line. This guide covers how to navigate to your Windows filesystem, interact with files using standard Linux commands, and bridge the two environments efficiently.

Locating Your Windows Drives

WSL mounts all active Windows storage drives under the /mnt/ directory by default.

To access your personal Windows 11 user folders (such as Desktop, Documents, or Downloads), navigate to your user profile directory located within /mnt/c/Users/.

  1. Go to your Windows user directory:

    cd /mnt/c/Users/YourWindowsUsername/

    (Replace YourWindowsUsername with your actual Windows account folder name).

  2. Access common folders directly:

    • Desktop:

      cd /mnt/c/Users/YourWindowsUsername/Desktop
    • Downloads:

      cd /mnt/c/Users/YourWindowsUsername/Downloads
    • Documents:

      cd /mnt/c/Users/YourWindowsUsername/Documents

Managing Windows Files with Linux Commands

Once inside a Windows directory, you can run standard Linux utilities to create, view, and modify files.

Launching Windows Applications from WSL

You can launch Windows binaries directly from the WSL terminal to interact with your files:

Important Considerations