Chris Angelico <ros...@gmail.com>: > On Sun, Apr 2, 2017 at 2:43 AM, Marko Rauhamaa <ma...@pacujo.net> wrote: >> It would be nice to be able to use a / in my file names. Funny >> enough, I'm allowed to use a zillion unprintable characters in my >> file names but no slashes allowed. >> >> Example: >> >> results-Q2/2017.json > > But how do you distinguish between that file, and a file called > 2017.json in a subdirectory called results-Q2?
When there's a will, there's a way: * Show a folder icon for a directory and a file icon for a file. * Do it URI style: path/to/results-Q2%2F2017.json * Do it C style: path/to/results-Q2\/2017.json * Do it Python style: [ "path", "to", "results-Q2/2017.json" ] * Do it Lisp style: (path to results-Q2/2017.json) I'm sure you can come up with several other workable solutions. Marko -- https://mail.python.org/mailman/listinfo/python-list