When trying to re-download a file that has already been downloaded, the program gives exit code 1 displaying "File {printable_filename} has been fully downloaded."
When file has been previously downloaded fully, it would be better to give exit code 0.
The exit code 1 is also used by other interruptions like "Destination cannot be reached/resolved." , "No Internet Connectivity." .
In any case, a zero exit code or a unique exit code is needed for files that have been previously fully downloaded. Needed badly to distinguish between network errors and already downloaded file.
When trying to re-download a file that has already been downloaded, the program gives exit code 1 displaying "File {printable_filename} has been fully downloaded."
When file has been previously downloaded fully, it would be better to give exit code 0.
The exit code 1 is also used by other interruptions like "Destination cannot be reached/resolved." , "No Internet Connectivity." .
In any case, a zero exit code or a unique exit code is needed for files that have been previously fully downloaded. Needed badly to distinguish between network errors and already downloaded file.
Thanks.