You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Am I correct in thinking that python-fuse uses full unicode for pathnames?
I believe that might work better on Windows and Mac than on Linux. Windows and Mac define an encoding for pathnames, but last I heard Linux didn't.
That's probably convenient for most applications, but for system software like a backup program it's probably not a good idea; there could be filenames that aren't unicode.
Am I correct in thinking that python-fuse uses full unicode for pathnames?
I believe that might work better on Windows and Mac than on Linux. Windows and Mac define an encoding for pathnames, but last I heard Linux didn't.
That's probably convenient for most applications, but for system software like a backup program it's probably not a good idea; there could be filenames that aren't unicode.
EG in this:
https://github.com/libfuse/python-fuse/blob/master/example/hello.py
hello_path = '/hello'
...hello_path probably should be (allowed to be?) b'/hello'
I believe anything in unicode can be serialized to bytes, but not everything that is bytes can be deserialized to unicode.
The text was updated successfully, but these errors were encountered: