Kholiavko Roman

Results 21 comments of Kholiavko Roman

Also i trying add path to adnroidDownloads config: ``` let path = RNFetchBlob.fs.dirs.DocumentDir; RNFetchBlob.config({ addAndroidDownloads : { useDownloadManager : true, notification : false, path: path + '/pdfurl-guide.pdf' , title: 'pdfurl-guide.pdf',...

@wkh237, I tried, but I still have an error. I trying this path: `file:///data/user/0/com.chat/files`, also I tried to remove one slash before the data `file://data/user/0/com.chat/files`, but result the same -...

I found some tmp fix, If I set path to `DownloadDir` - I can download file without error. `let path = RNFetchBlob.fs.dirs.DownloadDir + '/pdfurl-guide.pdf';` And I found that when I...

Ok, but if I need save file into the app directory, how I can do this without download managed ? I tried, but app folder com.myapp is empty.

@wkh237, can I download file in cash directory and open it after download ? I wanna just download image in cache and open it using `actionViewIntent`, I tried to do...

If I setup path to the `RNFetchBlob.fs.dirs.CacheDir`, I cant open file using `actionViewIntent`, but if I set path to the `DownloadDir`, or `DCIMDir` I can open file via `actionViewIntent`.

> You can download the file with DownloadManager API then copy the file (fs.cp) to your app folder (DocumentDir) @wkh237, also I tried to copy from download directory to DocumentDirs,...