"Uncle" <[EMAIL PROTECTED]> writes: > I have a problem with subject. WGet tells me that "Continued download failed > on this file, which conflicts with `-c'. Refusing to truncate existing > file". How to solve this problem. > System environment: Windows98 SE, VC++ 6.0, Wingate 4.2.0 proxy.
That message indicates that the HTTP server does not support continued downloading, which means that a new download would start from scratch. However, you already had a file and you specified `-c', meaning you want existing data intact. That is the "conflict". Resolve the conflict by deleting the file and starting Wget, this time without `-c'.
