Replies: 3 comments
-
I also have to use a pdf parsing library that does not accept a file handle, but rather a string for a file path. And in this current way its implemented, I would need to create another temp file just to be able to pass that string to the library. Would be much easier to just have access to where the original file is saved. |
Beta Was this translation helpful? Give feedback.
-
There's an open PR for adding |
Beta Was this translation helpful? Give feedback.
-
Although not in the changelogs, #4408 is now merged and part of v1.12.0! |
Beta Was this translation helpful? Give feedback.
-
I'm currently fiddling around with Remix and while using
unstable_createFileUploadHandler
I've noticed that thefilePath
property on aNodeOnDiskFile
is private. I don't think that this is really useful because I want to do some cleanup after using the file.If it's better to keep the
filePath
property private, I think it would be nice to add a function calledremove
orcleanup
that unlinks the file in the filesystem.I know that it's marked as unstable, but multipart uploads are quite important for many applications :)
Beta Was this translation helpful? Give feedback.
All reactions