123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- void handleFileDelete(AsyncWebServerRequest *request) {
- String path = GetPara(request, "path");
- if (path == "") {
- request->send(400, "text/plain", "Missing 'path' parameter");
- return;
- }
- Serial.print("Requested delete path: ");
- Serial.println(path);
- if (SD.exists(path)) {
- if (SD.remove(path)) {
- request->send(200, "text/plain", "File removed");
- } else {
- request->send(500, "text/plain", "Failed to delete file");
- }
- } else {
- request->send(404, "text/plain", "File not found");
- }
- }
- void handleFileDownload(AsyncWebServerRequest *request) {
- String path = GetPara(request, "path");
- if (path == "") {
- request->send(404, "text/plain", "'path' parameter not given");
- return;
- }
- Serial.print("Requested path: ");
- Serial.println(path);
- if (SD.exists(path)) {
- String contentType = getMime(path);
- request->send(SD, path, contentType, false);
- } else {
- request->send(404, "text/plain", "File not found");
- }
- }
- void handleListDir(AsyncWebServerRequest *request) {
-
-
- String jsonString = "[";
- String folderSubPath = GetPara(request, "dir");
- String folderPath = "/" + folderSubPath;
- if (SD.exists(folderPath)) {
- File root = SD.open(folderPath);
- bool firstObject = true;
- if (root) {
- while (true) {
- File entry = root.openNextFile();
- if (!entry) {
-
- break;
- } else {
-
- if (!firstObject) {
- jsonString = jsonString + ",";
- } else {
- firstObject = false;
- }
- }
- String isDirString = "true";
- if (!entry.isDirectory()) {
- isDirString = "false";
- }
- jsonString = jsonString + "{\"Filename\":\"" + entry.name() + "\",\"Filesize\":" + String(entry.size()) + ",\"IsDir\":" + isDirString + "}";
- entry.close();
- }
- root.close();
- jsonString += "]";
- request->send(200, "application/json", jsonString);
- } else {
- request->send(500, "text/plain", "500 - Path open error");
- }
- } else {
- request->send(404, "text/plain", "404 - Path not found");
- }
- Serial.println(folderPath);
- }
- void handleFileUpload(AsyncWebServerRequest *request, String filename, size_t index, uint8_t *data, size_t len, bool final) {
- static File uploadFile;
- static String uploadPath = "/";
- if (request->hasParam("dir")) {
- uploadPath = "/" + request->getParam("dir")->value() + "/";
- }
- if (index == 0) {
- String path = uploadPath + filename;
- Serial.printf("Upload Start: %s\n", path.c_str());
- uploadFile = SD.open(path, FILE_WRITE);
- if (!uploadFile) {
- Serial.println("Failed to open file for writing");
- return request->send(500, "text/plain", "File Upload Failed");
- }
- }
-
- if (uploadFile) {
- uploadFile.write(data, len);
- }
- if (final) {
-
- if (uploadFile) {
- uploadFile.close();
- Serial.printf("Upload End: %s (%u)\n", filename.c_str(), index + len);
- return request->send(200, "text/plain", "File Uploaded");
- }
- else {
- return request->send(500, "text/plain", "File Upload Failed");
- }
- }
- }
|