Kashi Keefe← All resources
Workflows·Claude·7 min read

Let Claude Organize Every File You Own

Point Claude at the chaos and watch it sort, rename, and file everything cleanly.

Most people have a file system that looks like a crime scene. Downloads folder with 800 items. Desktop covered in screenshots. Documents folder with folders inside folders no one has opened since 2021. Claude can fix this — not by magic, but by doing the tedious thinking you've been avoiding. Here's a repeatable system to point Claude at the chaos and come out with something clean.

Step 1: Get a snapshot of what you're dealing with

Before Claude can help you organize anything, it needs to see the mess. Open Terminal (Mac) or Command Prompt (Windows) and run a directory listing that captures file names, sizes, and dates. This gives Claude raw material to work with — no manual typing required.

On Mac, run this in Terminal to export your Downloads folder contents to a text file:

ls -lhR ~/Downloads > ~/Desktop/downloads_snapshot.txt

For Windows, open PowerShell and run:

Get-ChildItem -Recurse "C:\Users\YourName\Downloads" | Select-Object FullName, Length, LastWriteTime | Export-Csv -Path "$env:USERPROFILE\Desktop\downloads_snapshot.csv" -NoTypeInformation

Open that file, copy the contents, and paste them into Claude in the next step. Do this for one folder at a time — Downloads, Desktop, Documents. Don't try to feed Claude your entire hard drive in one shot.

Step 2: Tell Claude what system you want to end up with

Claude doesn't know your life. You need to give it context: what you do, what the files are for, and what kind of folder structure makes sense for how you actually work. Spend 30 seconds writing this out before you paste the file list.

Use this prompt as your starting point:

I'm going to paste a list of files from my Downloads folder. Here's context about me and my work: [one or two sentences — e.g., "I'm a marketing consultant. I work with 3-4 clients at a time and run paid ads, create content, and send proposals."]

I want a clean folder structure I can actually stick to. Based on the file names and dates, help me:
1. Identify what categories of files I actually have
2. Suggest a top-level folder structure (no more than 7 main folders)
3. Map each file (or group of files) to the folder it belongs in
4. Flag any files that look like duplicates or that I can probably delete
5. Suggest a naming convention I should use going forward

Here's the file list:
[paste your snapshot here]

Claude will give you a categorized breakdown, a proposed folder tree, and a mapping. Read it. Push back where it doesn't fit your workflow. This is a conversation, not a one-shot answer.

Step 3: Agree on a folder structure before you move anything

The most common mistake: people move files before they've locked in the structure. Then they realize the structure doesn't work three days later and everything's in the wrong place.

Ask Claude to write out the final structure as a clean hierarchy before you do anything else:

Write out the final folder structure as a plain text tree, like this format:

Documents/
  Clients/
    Client-A/
    Client-B/
  Finance/
    Invoices/
    Receipts/
  Personal/

Only include folders I'll actually use. No placeholder or 'Misc' catch-alls.

Review it. Adjust it. Confirm it with Claude before proceeding. This 5-minute step saves hours of re-sorting later.

Step 4: Get Claude to write the move commands for you

Here's where this workflow pays off. Instead of manually dragging files, have Claude generate the shell commands that move everything to the right place. You review the commands, then run them. Claude does the cognitive work. You stay in control.

Ask Claude for the commands like this:

Now write the Terminal (Mac/zsh) commands to move these files into the correct folders based on the structure we agreed on. Use the full file paths. Put each command on its own line so I can review and run them one at a time. Start with creating the folder structure first, then list the move commands.

You'll get back a script you can paste into Terminal line by line. Read through it before running. If a file path looks wrong or a move command doesn't make sense, ask Claude to fix it before executing.

Always run 'mkdir' commands first before any 'mv' commands. Moving a file to a folder that doesn't exist yet will error out. Claude should order them correctly, but verify.

Step 5: Build a naming convention and lock it in

Organization falls apart when new files land with random names. The fix is a naming convention you can follow without thinking. Ask Claude to write you one based on the file types you actually use.

Based on the file types we found, write me a simple naming convention I can follow going forward. I want rules for:
- Client deliverables
- Invoices and receipts
- Personal documents (IDs, insurance, etc.)
- Screenshots and reference images
- Video files

Make it easy to sort chronologically. Use YYYY-MM-DD format for dates where relevant. Keep it short enough that I'll actually use it.

Take the output and paste it into a text file called FILE-NAMING.md inside your Documents folder. Every time you save something new, reference it. Takes 10 seconds. Prevents three months of drift.

Step 6: Handle the recurring maintenance

Your Downloads folder will fill up again within a week. That's fine — the system only works if you maintain it. Set a recurring calendar block (15 minutes, once a week) to run through this process on your Downloads folder. It's fast once the structure exists.

For the weekly cleanup, use this lighter version of the prompt:

Here's my Downloads folder from this week. My folder structure is:
[paste your folder tree]

For each file, tell me:
1. Which folder it belongs in
2. What to rename it (if needed)
3. If it's safe to delete

Keep the output as a simple table: File | Action | Destination

[paste file list]

Run this weekly. It takes less time than scrolling through the mess.

What to expect from this workflow

The first pass — organizing a chaotic Downloads or Documents folder — typically takes 45 to 90 minutes including the Claude conversation. Subsequent weekly cleanups take 10 to 15 minutes. The system breaks down if you skip the naming convention or let the structure get too complicated. Seven top-level folders is a real limit, not a suggestion. More than that and you'll stop filing things because the decision takes too long. When this is working well, you can find any file in under 30 seconds and your Downloads folder never has more than a week's worth of items in it.