fs.ino 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /* File System API */
  2. //File delete API
  3. void handleFileDelete(AsyncWebServerRequest *request) {
  4. String path = GetPara(request, "path");
  5. if (path == "") {
  6. request->send(400, "text/plain", "Missing 'path' parameter");
  7. return;
  8. }
  9. Serial.print("Requested delete path: ");
  10. Serial.println(path);
  11. if (SD.exists(path)) {
  12. if (SD.remove(path)) {
  13. request->send(200, "text/plain", "File removed");
  14. } else {
  15. request->send(500, "text/plain", "Failed to delete file");
  16. }
  17. } else {
  18. request->send(404, "text/plain", "File not found");
  19. }
  20. }
  21. //File download API
  22. void handleFileDownload(AsyncWebServerRequest *request) {
  23. String path = GetPara(request, "path");
  24. if (path == "") {
  25. request->send(404, "text/plain", "'path' parameter not given");
  26. return;
  27. }
  28. Serial.print("Requested path: ");
  29. Serial.println(path);
  30. if (SD.exists(path)) {
  31. String contentType = getMime(path);
  32. request->send(SD, path, contentType, false);
  33. } else {
  34. request->send(404, "text/plain", "File not found");
  35. }
  36. }
  37. //List dir API
  38. void handleListDir(AsyncWebServerRequest *request) {
  39. //Get the folder path to be listed
  40. //As ESP8266 dont have enough memory for proper struct to json conv, we are hacking a json string out of a single for-loop
  41. String jsonString = "[";
  42. String folderSubPath = GetPara(request, "dir");
  43. String folderPath = "/" + folderSubPath;
  44. if (SD.exists(folderPath)) {
  45. File root = SD.open(folderPath);
  46. bool firstObject = true;
  47. if (root) {
  48. while (true) {
  49. File entry = root.openNextFile();
  50. if (!entry) {
  51. // No more files
  52. break;
  53. } else {
  54. //There are more lines. Add a , to the end of the previous json object
  55. if (!firstObject) {
  56. jsonString = jsonString + ",";
  57. } else {
  58. firstObject = false;
  59. }
  60. }
  61. String isDirString = "true";
  62. if (!entry.isDirectory()) {
  63. isDirString = "false";
  64. }
  65. jsonString = jsonString + "{\"Filename\":\"" + entry.name() + "\",\"Filesize\":" + String(entry.size()) + ",\"IsDir\":" + isDirString + "}";
  66. entry.close();
  67. }
  68. root.close();
  69. jsonString += "]";
  70. request->send(200, "application/json", jsonString);
  71. } else {
  72. request->send(500, "text/plain", "500 - Path open error");
  73. }
  74. } else {
  75. request->send(404, "text/plain", "404 - Path not found");
  76. }
  77. Serial.println(folderPath);
  78. }
  79. // Function to handle file uploads
  80. void handleFileUpload(AsyncWebServerRequest *request, String filename, size_t index, uint8_t *data, size_t len, bool final) {
  81. static File uploadFile;
  82. static String uploadPath = "/";
  83. if (request->hasParam("dir")) {
  84. uploadPath = "/" + request->getParam("dir")->value() + "/";
  85. }
  86. if (index == 0) {
  87. String path = uploadPath + filename;
  88. Serial.printf("Upload Start: %s\n", path.c_str());
  89. uploadFile = SD.open(path, FILE_WRITE);
  90. if (!uploadFile) {
  91. Serial.println("Failed to open file for writing");
  92. return request->send(500, "text/plain", "File Upload Failed");
  93. }
  94. }
  95. // Write the received data to the file
  96. if (uploadFile) {
  97. uploadFile.write(data, len);
  98. }
  99. if (final) {
  100. // Close the file at the final chunk
  101. if (uploadFile) {
  102. uploadFile.close();
  103. Serial.printf("Upload End: %s (%u)\n", filename.c_str(), index + len);
  104. return request->send(200, "text/plain", "File Uploaded");
  105. }
  106. else {
  107. return request->send(500, "text/plain", "File Upload Failed");
  108. }
  109. }
  110. }