M
Michael Robertson
I'm having trouble opening a file in linux, whose path has spaces in it.
$ mkdir my\ test
$ echo test > my\ test/test.txt
$ python
Exception
but yet...
works just fine.
$ mkdir my\ test
$ echo test > my\ test/test.txt
$ python
Exception
but yet...
works just fine.