Ive noticed if I have a list like
Code:
C:.
\---Readings
| |
| +---Books
| | Begin.txt
| \---New Pub
| | New.txt
| | File1.txt
| | File2.txt
| Test1.txt
| Test2.txt
| Test3.txt
Would it be possible for a change in the software as it enters each folder, to download the files that it knew about before digging into the next folder? In the above example the download would go :
Begin.txt
new.txt
File1.txt
File2.txt
test1.txt
test2.txt
test3.txt
My proposal would alter that to :
test1.txt
test2.txt
test3.txt
File1.txt
File2.txt
Begin.txt
new.txt
I noticed when downloading some files, that by the time all the nested folders had been addressed ... some of the early files it had listed and waiting in the queue had moved in the mean time. I wonder if its better to deal with the files as we discover them, before progressing to the next folder? Potentially not having to keep a cache of earlier files from the listing.
Hope that made sense? Again, feel free to close this if its considered a nonsense idea.