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
Currently we assume that short file names contain valid UTF-8, which is not always true.
We should have some kind of generic type param for a codepage convertor which can do fn convert_from(byte: u8) -> char and fn convert_to(ch: char) -> Result<u8, EncodingError>. Users could either stuff in a CodePage 437 or ISO-8859-1 converter, or something that can dynamically switch code page.
If you have multiple partitions with different codepages on the same disk, we probably can't help you.
The text was updated successfully, but these errors were encountered:
Currently we assume that short file names contain valid UTF-8, which is not always true.
We should have some kind of generic type param for a codepage convertor which can do
fn convert_from(byte: u8) -> char
andfn convert_to(ch: char) -> Result<u8, EncodingError>
. Users could either stuff in a CodePage 437 or ISO-8859-1 converter, or something that can dynamically switch code page.If you have multiple partitions with different codepages on the same disk, we probably can't help you.
The text was updated successfully, but these errors were encountered: