I\'m downloading an ePub file from a URL.
Now I want to implement a mechanism by which if user tries to re-download the same file, he should get warning/error messag
Get file name from FilenameUtils
from apache commons-io
URL url = URL(fileUrl)
String fileName = FilenameUtils.getName(url.getPath())
To this add commons-io
dependency in build.gradle(app)
implementation "commons-io:commons-io:2.6"
It also extracts the file name from the complex URL like below
http://www.example.com/some/path/to/a/file.xml?foo=bar#test