I'm using wget 1.11.4 on Cygwin 1.5.25. I'm trying to recursively download a directory tree, which is the root of a javadoc tree.
This is approximately the command line I tried: wget -x -p -r http://<host>/.../apidoc When it finished, it seemed like it downloaded many files the way I expected, such that it created a directory corresponding to the URL path element, and put the new file into that new directory. However, many other files were put in the "root" directory which should have been in directories, and the resulting name looked like "index.h...@text%2ftest%2ftext.html". I also noticed that for the files that got written like that, the request for the file from wget looked like this: http://<host>/.../apidoc/index.html?overview-summary.html This example was written with the name "[email protected]". I must be missing something simple.
