I am using Ubuntu on Windows 10. I've created a user id and there I created some folders. Now I want to copy those folders to my Windows folder in, say, E:
drive. How can I get access to the folder that I created in Ubuntu in the Windows interface? I made that folder in /home/user/directory
.
Asked
Active
Viewed 1.2k times
6

Zanna
- 70,465
-
2Copy from Ubuntu command line. Accessing the WSL files from Windows is not supported. – muru Dec 20 '17 at 07:33
-
1@muru IMHO, this is not a duplicate. The asker of this question wants the opposite. To access a Windows disk from Ubuntu is a part of the solution but it does not solve it fully while Joe Ford’s answer does. – Melebius Dec 20 '17 at 09:20
-
2That's why my comment says the "opposite" is not supported. – muru Dec 20 '17 at 09:21
1 Answers
6
All Windows' disks are available through /mnt/
, so you can copy it to E:
using Bash:
cp -r /home/user/direcory /mnt/e
Root of Ubuntu is located at %LOCALAPPDATA%\CanonicalGroupLimited.UbuntuonWindows_79rhkp1fndgsc\LocalState\rootfs
.

David Foerster
- 36,264
- 56
- 94
- 147

Joe Ford
- 169