如何在 Windows 上通过 Ubuntu 上的 Bash 访问 Windows 文件夹

如何在 Windows 上通过 Ubuntu 上的 Bash 访问 Windows 文件夹

在 Windows 上的 Ubuntu 上的 Bash 应用程序上,我只有

root@localhost:~# ls -a
    .bash_history  .bashrc  .profile

如何访问所有 Windows 文件夹(如文档、下载等)?

答案1

您会在 Bash 环境中找到 WindowsC:\结构。/mnt/c/

因此,我的 Documents 文件夹位于/mnt/c/Users/Ben/Documents/

答案2

或者

  1. 按住Shift右击在您想要的 Windows 目录中
  2. 选择 ”在此处打开 PowerShell 窗口

PowerShell 上下文菜单

  1. 进入 PowerShell 后,输入bash

您将能够直接使用任何 Bash 命令来操作该 Windows 目录中的文件和文件夹。通过使用此方法,您无需手动cd进入目录,尤其是当您需要访问根深蒂固的目录时。


自 Windows 10 1809 起更新:

上面的方法仍然有效,但现在有一种更简单的方法。

  1. 按住Shift右击在您想要的 Windows 目录中
  2. 选择 ”在这里打开 Linux shell

相关内容