File-Loader
File-Loader copied to clipboard
File not found in App Internal storage
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) {
}
});`