someone have an example for download files (png, txt, bin etc) from http server and store them on SPIFFS?
Cannot find an example for that, only storing html results for simple "get" like the part of code bellow:
while(client.available()) {
line = client.readStringUntil('\r');
line.trim();
thks