Reputation: 1241
I am passing the html file as "file:///android_asset/WebApplication/index.html". How can I check this file existence in android.
Upvotes: 3
Views: 4927
Reputation: 38439
[Android Assets]: File or Folder?
How to get all files from assets folder
File f=new File("file:///android_asset/");
File[] files=f.listFiles();
and if files return null den you understand folder is empty.
Upvotes: 0