如何在Windows 10中从Ubuntu应用程序访问Google Drive文件夹

n8ghc7c1  于 2023-03-29  发布在  Windows
关注(0)|答案(5)|浏览(95)

我在windows 10中使用ubuntu应用程序。我可以使用bash访问大部分windows文件。windows文档在/mnt/c中。这没问题。
我可以在Windows 10中输入G:命令,在命令提示符(cmd.exe)中访问“谷歌驱动器”文件夹。(谷歌驱动器商业版,驱动器文件流)它也可以。我的问题是
有没有办法访问“谷歌驱动器”文件夹使用bash?
尝试1:
我在Windows的桌面上做了一个“Google Drive”文件夹的快捷方式。我打开bash,写cd /mnt/c/Users/Taygun Bulmus/Desktop。但它不是一个目录。
相关问题:
how to read sh files on Ubuntu built in Windows 10 developer mode
Windows Linux Subsystem - Accessing Files outside of Ubuntu

编辑1:

它仍然是WSL社区的开放问题(17/03/2020):
Mount Google Drive File System to WSL #2999

wfauudbj

wfauudbj1#

这现在起作用了:
在WSL 2、Windows 20H2(设置为德语)、Google Drive版本47.0.19.0

windows@DESKTOP-I608RI4:/mnt/g/Meine Ablage/Data$ echo hello > hello-cr.txt
windows@DESKTOP-I608RI4:/mnt/g/Meine Ablage/Data$ ls
wkftcu5l

wkftcu5l2#

不幸的是,没有任何解决方案,谷歌驱动器的商业用途:“Drive File Stream”(see this REF)。对于个人使用,您可以指定一个可以从bash访问的文件夹。
公开狂欢,

cd /mnt/c/[%Your Synced Google Drive Folder%]
34gzjxbg

34gzjxbg3#

对于访问文件夹,请使用以下命令:cd /mnt/<drive>/address_folder'

xfb7svmp

xfb7svmp4#

转到C:\Windows\System32并创建wsl.exe的快捷方式。然后您可以将快捷方式的“开始”属性更改为您的驱动器路径,瞧。

gudnpqoy

gudnpqoy5#

我不知道你是否遇到了完全相同的问题,但我知道我的挂载在一段时间内正常工作,然后只在WSL上就不能工作了。ls命令揭示了这个美丽:Cannot add an embedded picture yet
this post之后,我重新安装了驱动器,现在一切似乎都正常了:)命令是:

sudo mount -t drvfs G: /mnt/g

相关问题