How to save downloads to different folders by file type on Windows
Chrome and Edge can only use one download folder. Here is why, what the built-in workarounds actually do, and how to sort downloads by type automatically instead.
Every few weeks someone asks the same question on a Windows forum: can I make Chrome save PDFs to my Documents folder, images to Pictures, and installers somewhere I will actually find them?
The short answer is no. No mainstream browser can do it, and Windows cannot do it either.
The useful answer is that you do not need the browser to do it.
Why browsers only have one download folder
This is a deliberate design decision, not an oversight.
A browser decides where to put a file before it knows much about it. At the moment the download starts it has a filename and a MIME type the server claimed — and servers lie about MIME types constantly. A file arriving as application/octet-stream could be an installer, a ZIP, or a font.
Routing on that information would put files in the wrong place often enough to be worse than useless. So browsers do the safe thing: one folder, one rule, no surprises.
Chrome has had a feature request open for this since 2011. It is not coming.
What Windows actually offers
Group by type — looks like sorting, moves nothing
Open your Downloads folder, click Sort → Group by → Type. Windows clusters files into Documents, Pictures, Applications and so on.
Storage Sense — a delete button with a timer
Settings → System → Storage → Storage Sense can remove files from Downloads that have not been opened in 1, 14, 30 or 60 days.
Read that again: it deletes them. It does not file them anywhere.
That is genuinely useful if your Downloads folder is disposable. It is a disaster if you keep invoices, contracts or installers there. I wrote about what Storage Sense actually does to your Downloads folder separately, because a lot of people discover this the hard way.
Ask where to save each file — correct, and unbearable
In Chrome: Settings → Downloads → Ask where to save each file before downloading.
This does exactly what you want. It also interrupts you on every download, including the ones you do not care about. Most people turn it on, keep it for four days, and turn it off.
It is the right answer for someone who downloads three files a week and the wrong answer for everyone else.
The approach that actually holds up
Stop trying to make the download smarter. Sort afterwards, automatically, based on what the file turned out to be.
This works because after the file has landed, everything ambiguous about it is resolved: you have a real extension, a real size, and a real name.
Point a tool at your Downloads folder
One folder is enough to start. Downloads is where the mess is.
Write rules in plain terms
".pdf goes to Documents\Invoices". ".exe and .msi go to Installers". ".jpg and .png go to Pictures". Four or five rules cover most people entirely.
Let it run in the background
New files get filed as they arrive. You stop thinking about it.
What good rules look like
| Rule | Sends |
|---|---|
.pdf | Documents\PDFs |
.exe, .msi | Downloads\Installers |
.jpg, .png, .webp | Pictures\Downloaded |
.zip, .7z, .rar | Downloads\Archives |
.csv, .xlsx | Documents\Spreadsheets |
Five rules. That is the whole system for most people, and it is the point where the folder stops growing.
What about PowerShell or Power Automate?
Both work. Both are heavier than the problem.
A PowerShell script that moves files by extension is about fifteen lines, and then you own it: you schedule it, you debug it when a path changes, you remember what it does eighteen months later. Power Automate Desktop can watch a folder, but it is a large piece of software for one small job, and its flow editor is not faster than writing a rule.
They are good answers if you already live in either tool. If you do not, installing one to sort your Downloads folder is a decision you will regret at the first error message.
The honest limitation
Nothing in this article makes a browser smarter. Files still land in one folder first, and there is a gap — usually under a second — between the download finishing and the file being moved.
If you need the file to never touch Downloads, the only real answer is the "ask every time" setting, and paying its interruption cost.
For everyone else, a one-second gap is not a problem worth solving. A Downloads folder with four thousand files in it is.
Part of a wider system for organizing files on Windows.