Search found 1 match

by mayur009
Thu May 09, 2024 10:33 am
Forum: ESP-IDF
Topic: multipart/form-data - large file upload using http client
Replies: 1
Views: 1692

Re: multipart/form-data - large file upload using http client

hello ajitsingh ! you can use the method given below : void upload_file(){ // Open WAV file from SD card File file = SD.open("/" + fileName, FILE_READ); // Removed unnecessary String() conversion if (!file) { Serial.println("Failed to open file for reading"); return; } file.seek(0); // Reset file po...