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
Some FS (eg. WSL) return weird characters that cannot be displayed correctly, for example, a file named file< in Linux would appear as file when displayed in React-Explorer.
The problem is that all forbidden characters in a Windows filename will be visually displayed as , so this directory in Linux:
file<
file>
file*
would be displayed like this in React-Explorer:
file
file
file
Since the filename is displayed in lots of places (eg. the tab title, file table, path bar, etc...), a new displayName property that contains the displayed filename should be added to the FS.File object and every place where the filename property was used to display the filename will have to be replaced by this new prop.
This includes:
pathbar
filetable (inc. title tooltip)
tab title
downloads panel
error messages ?
The text was updated successfully, but these errors were encountered:
Some FS (eg. WSL) return weird characters that cannot be displayed correctly, for example, a file named
file<
in Linux would appear asfile
when displayed in React-Explorer.The problem is that all forbidden characters in a Windows filename will be visually displayed as
, so this directory in Linux:would be displayed like this in React-Explorer:
Since the filename is displayed in lots of places (eg. the tab title, file table, path bar, etc...), a new
displayName
property that contains the displayed filename should be added to theFS.File
object and every place where thefilename
property was used to display the filename will have to be replaced by this new prop.This includes:
The text was updated successfully, but these errors were encountered: