Replies: 2 comments
-
The Why are you trying to pass an absolute unix path to a native windows application anyways? |
Beta Was this translation helpful? Give feedback.
-
This is how IPFS addresses look like. See: https://docs.ipfs.io/concepts/what-is-ipfs/#content-addressing Another example where escaping unix paths can be useful is docker (Hyper-V, WSL2 or legacy ToolBox). $ cd /myserver
$ echo "hello world" > index.html
$ docker run -d -p 80:80 \
-v /myserver/index.html:/usr/share/caddy/index.html \
caddy
...
$ curl http://localhost/
hello world While one ( |
Beta Was this translation helpful? Give feedback.
-
Running go-ipfs produce error
I found a double slash solution very quickly, but it works differently for a path from multiple folders.
I'm pretty sure the double slash behavior should be the same in all cases.
It took me some time to find information about MSYS_NO_PATHCONV=1 and possible solution to run ipfs
alias ipfs='MSYS_NO_PATHCONV=1 ipfs'
Soft version
Beta Was this translation helpful? Give feedback.
All reactions