B4J Question Bug ?

moore_it

Well-Known Member
Licensed User
Longtime User
if i try this :

B4X:
if file.exist(file.dirasset,"test.png") then
end if

file test.png exist in file.dirasset but file.exist return false

it's a my mistake ?
 

Brandsum

Well-Known Member
Licensed User
The asset directory is read-only. You cant modify any file. So if you want to use any file you should put that in the Files folder of your project. Those will not get deleted in any situation. Maybe thats why file exist function was not built for asset directory.
 
Upvote 0
Top