Access cygwin filesystem from host windows?
Solution 1:
Use cygpath -w cygwin-pathname
to convert from a Cygwin path to a regular Windows path. For example, cygpath -w /cygdrive/c/Users
will print C:\Users
.
Use cygpath -w cygwin-pathname
to convert from a Cygwin path to a regular Windows path. For example, cygpath -w /cygdrive/c/Users
will print C:\Users
.