Flat media folder vs multiple directories

I recently took over a website that uses a flat media folder in the site root. Is there a benefit to that over using the standard WordPress media folder structure of uploads/year/month/file?

Not particularly, mostly preference. Some people might do it thinking it enhances SEO, but I’ve seen no evidence to support that claim.

My guess was that it takes a long time to index a single directory with a ton of files than it does to index the standard structure.

This sounds plausible, but you shouldn’t need to access this folder via FTP. Remember, the media library is not a file/folder viewer. Uploading things to the uploads folder doesn’t make them appear in the media library, and deleting things in that folder does not remove them, it just creates broken images.

This is because when you upload a file it’s represented in the database as a post of type attachment, and it’s those attachments that are listed in the media library. They have post meta, post parents, their own template and URLs, and can even have comments if you add the comment functions to their templates

At various times, we have been unable to upload images and, when we can upload images, it goes slowly.

This could be due to the flat folder layout, but that’s less likely. You would need to profile an upload using the simple uploader rather than the drag and drop. You would do this via a tool such as XDebug, or the query monitor plugin. Right now you do not have enough information to draw a conclusion and it could be many things.