How to do file operations in Ubuntu on Windows with explorer?

Using Bash on Ubuntu on Windows 10 I know that my home folder is located at C:\Users\<username>\AppData\Local\lxss\home\ and all other stuff is somewhere there too.

When I copy things to ...\lxss\home with Windows Explorer it doesn't show up in bash. Maybe file systems, maybe permissions? Alright, let me just copy stuff from \mnt\c\... then via bash. Works.

Now I just want to edit a file weirdfile.txt in my home directory. I open it up with Windows Notepad, edit it, save it - it's gone from bash. Physically I can still see it hanging around in the folder with Windows Explorer, but in bash it is gone. Not hidden. sudo doesn't help. Starting bash as admin doesn't help.

Steps to reproduce

  1. Copy folder to C:\Users\<username>\AppData\Local\lxss\home\ with Windows Explorer
  2. Check home directory with Bash on Ubuntu on Windows (bash) ls -a
  3. Observe that the folder does not exist
  4. Repeat steps 1-3 with a regular text file
  5. Create folder within bash mkdir TestFolder
  6. Check C:\Users\<username>\AppData\Local\lxss\home\ with Windows Explorer
  7. Observe that the folder exists
  8. Repeat steps 5-7 for a regular file touch somefile.txt
  9. Open somefile.txt with your favorite text editor and make some changes
  10. Observe that somefile.txt is gone (ls -a) when looked at in bash.

What is going on here? Shed some light on the virtualized file system and tell me how to work with files from within Windows. SSH into localhost and edit files via SCP? No, thank you. Can I just work with files with the Explorer / Windows tools, please?

I can do you one better:

ln -s /mnt/c/Users/<username>/Desktop/weirdfile.txt /~/weirdfile.txt

Works. Never disappears. I can work with the file with Windows tools. The world is a better place. Unfortunately Bash on Windows doesn't seem to understand Windows symlinks/hardlinks, so I have to symlink everything from within bash.

PS: It feels weird tagging a question with "ubuntu" and with "windows".


So Jack Hammons, a program manager from Microsoft linked to this great official resource: https://blogs.msdn.microsoft.com/wsl/2016/06/15/wsl-file-system-support/

Problem is that I'm pretty much out of luck (a little edited from link above):

While [WSL] files are stored in regular files on Windows in the directories mentioned above, interoperability with Windows is not supported. If a new file is added to one of these directories from Windows [WSL] simply ignores it. Many editors will also strip the [Extended Attributes, which are used for storing WSL metadata] when saving an existing file, again making the file unusable in WSL.

Additionally, since [WSL] caches directory entries, any modifications to those directories that are made from Windows while WSL is running may not be accurately reflected.

So it seems even though I can see the files/folders in C:\Users\<username>\AppData\Local\lxss\home\, I should not interact with them with Windows.

On Symbolic links:

While NT supports symbolic links, we could not rely on this support because symbolic links created by WSL may point to paths like /proc which have no meaning in Windows.

One question remains: When symlinking files from somewhere on /mnt/c/ everything seems to work fine from Windows as well as from WSL. So right now I have several folders symlinked from My Documents into my WSL home folder. Am I messing things up?

EDIT: Rich Turner was so kind to put this information in a semi-official blog post here https://blogs.msdn.microsoft.com/commandline/2016/11/17/do-not-change-linux-files-using-windows-apps-and-tools/. Although not specified my symlinking idea actually seems to be a good way as the mounted NTFS partitions are treated differently.