D db0070 Active Member Licensed User Longtime User Oct 13, 2019 #1 I have a file in DirAssets named "01-Para-001.gif", why is it when I get it into a list via the code below the filename changes to lower case "01-para-001.gif"? B4X: Dim fileList As List fileList.Initialize fileList = File.ListFiles(File.DirAssets)
I have a file in DirAssets named "01-Para-001.gif", why is it when I get it into a list via the code below the filename changes to lower case "01-para-001.gif"? B4X: Dim fileList As List fileList.Initialize fileList = File.ListFiles(File.DirAssets)
Eme Fibonacci Well-Known Member Licensed User Longtime User Oct 13, 2019 #2 The resource compiler converts names to lower case before processing to avoid problems on case-insensitive file systems Use only low case files names. From https://developer.android.com/guide/topics/resources/providing-resources Upvote 0
The resource compiler converts names to lower case before processing to avoid problems on case-insensitive file systems Use only low case files names. From https://developer.android.com/guide/topics/resources/providing-resources