grab
grab copied to clipboard
Downloading dynamic content does not work
Hi,
when downloading dynamic content with Request.SkipExisting = false
and Request.NoResume = true
, it does not get overwritten, if ContentLength
of remote file does not equal local file size,
It can be fixed in two ways.
- Add proper documentation to
Request.SkipExisting
, that if you download dynamically generated file, you should also setRequest.NoResume
to false - Add new variable to
Request
, that will setRequest.SkipExisting
to false andRequest.NoResume
to true
After discussion is done, I'll prepare pull request.
Regards Alex