tremara1 Active Member Licensed User Longtime User Jan 26, 2012 #1 Hi, just a quick general ask, I believe some of the new devices coming out do not have sd card access. Do I have to take this into account when coding using DirDefaultExternal. thanks again......
Hi, just a quick general ask, I believe some of the new devices coming out do not have sd card access. Do I have to take this into account when coding using DirDefaultExternal. thanks again......
NJDude Expert Licensed User Longtime User Jan 26, 2012 #2 You can test if the external storage is writable using: B4X: If File.ExternalWritable = True Then Msgbox("Writable", "") Else Msgbox("Not Writable", "") End If You can also test if it's readable: B4X: If File.ExternalReadable Then ... Last edited: Jan 26, 2012 Upvote 0
You can test if the external storage is writable using: B4X: If File.ExternalWritable = True Then Msgbox("Writable", "") Else Msgbox("Not Writable", "") End If You can also test if it's readable: B4X: If File.ExternalReadable Then ...