magnusja / libaums

Open source library to access USB Mass Storage devices on Android without rooting your device
Apache License 2.0
1.28k stars 272 forks source link

Fix filename split delimiter and ext index #288

Closed zdronz closed 3 years ago

zdronz commented 3 years ago

"." regex matches any symbol, while "\\." matches only the dot - the actual delimiter in FAT32. The "ext" part of the filename should be taken by index 1 from the split result.

magnusja commented 3 years ago

huh thanks a lot!!