Hello
i am currently trying to download files from github (and yes i know about wget) and i need to know if they exist or not (making a list of all existing files is not feasible, because there is not enough space on the disk for the list).
I tried multiple things:
1. wget and filesystem.size always gave a length of 0 even for existing files
2. copying wget in my own program and setting a flag if there is a chunk works ... but not with every file (all files that exist have the same structure and length) and i need all of the existing ones them
Now i tried to do it myse