- Issue created by @aaron.ferris
- 🇳🇱Netherlands clivesj
Maybe I don't fully understand this, but what you are describing is the normal behavior of the Drupal File upload.
When you say:
Steps to reproduce
1. Upload files via a directory listing node
2. Don't click saveIn step-1 you are not uploading the file yet, but just *selecting* the files you want to upload.
Normally another step is needed to execute the upload. That can be by submitting a node or in case of Filebrowser, Saving the upload (Submitting the upload form)Starting with D8 we started using the Core Managed File Class to upload files in Filebrowser. That was for convenience. But other than that we don't do anything with the managed file system and corresponding Core DB tables.
FB is always intended to use the Unmanaged Filesystem. So, Drupal does not (need to) know what is happening within Filebrowser. The reason is that from the start the intention was to by-pass the Managed File System. You can upload files (outside Drupal, FTP etc) , assign a directory listing to that Directory and Filebrowser will construct the directory.
I hope this clarifies things, let me know if not or if you still require a feature.