File-Loader icon indicating copy to clipboard operation
File-Loader copied to clipboard

File not found in App Internal storage

Open him2016 opened this issue 7 years ago • 0 comments

Does this library downloads the file too into the device's internal storage or just shows the file from the network because when I try to open the file using intent it gives error- ERR_FILE_NOT_FOUND.

Below is the code: `FileLoader.with(mcontext) .load(message) .fromDirectory(PRMConstant.FILES_DIRECTORY_NAME, FileLoader.DIR_INTERNAL) .asFile(new FileRequestListener<File>() { @Override public void onLoad(FileLoadRequest fileLoadRequest, FileResponse<File> fileResponse) { .... }

                            @Override
                            public void onError(FileLoadRequest fileLoadRequest, Throwable throwable) {
                            }
                        });`

him2016 avatar Jun 21 '18 09:06 him2016