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
Make a file/folder in the Google Drive web interface that includes a forward slash
Mount the Google Drive and run ls
Result: ls: reading directory .: Input/output error.
Expected result: GDriveFS should treat these files and folders gracefully somehow. The official Google Drive client for windows replaces the slashes with undescores (Turns A/B into A_B). If the filename with underscores already exists it adds (1) to the name (So A/B and A_B turn into A_B (1) and A_B). Another option is, for example, to partially C-escape / into \x2f and \x2f into \\x2for partially URL-encode / into %2F and %2F into %252F.
The text was updated successfully, but these errors were encountered:
Steps to reproduce:
ls
Result:
ls: reading directory .: Input/output error
.Expected result: GDriveFS should treat these files and folders gracefully somehow. The official Google Drive client for windows replaces the slashes with undescores (Turns
A/B
intoA_B
). If the filename with underscores already exists it adds (1) to the name (SoA/B
andA_B
turn intoA_B (1)
andA_B
). Another option is, for example, to partially C-escape/
into\x2f
and\x2f
into\\x2f
or partially URL-encode/
into%2F
and%2F
into%252F
.The text was updated successfully, but these errors were encountered: