I want to check size of file where I have only URI content://media/external/video/media/813
to get size of file I use:
File file=new File(uri.getPath());
long ls = file.length();
and always get 0. Any ideas?
I want to check size of file where I have only URI content://media/external/video/media/813
to get size of file I use:
File file=new File(uri.getPath());
long ls = file.length();
and always get 0. Any ideas?