-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Files could neither be deleted nor downloaded - example 2 #4
Comments
Same issue here, did this modification: char dataPath[120] = {0}; and replaced all fileName to dataPath That was my work around. |
Thank you @janphoffmann & @viniciusro , I suspect libraries have changed since this was first published which is causing this. When I get time over the next couple weeks I will test and update. |
I remplaced this line: |
Works like a charm. PR. |
In my case, only '/' was missing before the file name.
|
In the example 2 I could not download the uploaded file and could not delete the uploaded file.
I traced the issue to: line 99: if(!SPIFFS.exists(filename)
the filename is defined with: const char *fileName = request->getParam("name")->value().c_str(); (line 94)
I did a rather ugly workauround with the following code:
The text was updated successfully, but these errors were encountered: