BohemianBuddha

tool

MyDesktopOrganizer

version1.0
languageC# / .NET (WinForms)
updated2026-08-06
downloadget it →

MyDesktopOrganizer settings window

MyDesktopOrganizer is the automatic cousin of a manual file sorter. Instead of dragging files where they belong, you write the rules once — this extension goes to that folder — and the tool sweeps your desktop on a weekly schedule, filing everything away without you lifting a finger.

Why it exists

Desktops rot. Files land there "just for now" and stay for months. Rather than tidying by hand and never quite keeping up, MyDesktopOrganizer turns desktop hygiene into a rule you set and forget — the cleanup happens on its own, every week.

How it works

Under the hood

Rules and preferences live in plain INI files in your AppData folder, so the configuration is human-readable and easy to back up. The weekly-folder name is treated as a small template: anything in braces is read as a .NET date format and replaced with the week's date.

// "Week of {yyyy-MM-dd}"  ->  "Week of 2026-08-02"
var match = Regex.Match(folder, @"\{(.*?)\}");
if (match.Success)
    folder = folder.Replace(match.Value,
        lastSunday.ToString(match.Groups[1].Value));

Get it

Built for Windows, no installer. Pair it with Task Scheduler for hands-off weekly cleanup. (Download link coming soon.)

← back to tools