If you need to keep two local folders aligned but do not want to install another desktop application, a browser based file system tool can handle supported on demand workflows. The basic method is to select two folders, compare their directory trees, review missing and changed files, choose a reconciliation rule, and approve the resulting copy operations.
The important limitation is that browser based reconciliation is user initiated. It is not the same as a background service that watches folders after the browser closes.
What Browser Based Folder Matching Can Do
Modern browser file system APIs can give a web application access to files and directories that the user explicitly selects. A directory handle can be enumerated recursively, while file handles can provide readable file objects and writable streams when permission allows.
That makes several useful file operations possible:
- Scan Folder A and Folder B.
- Compare matching relative paths.
- Read file size and modification information.
- Read file contents when exact comparison is needed.
- Create missing files or folders in an approved destination.
- Write updated file contents.
- Remove destination items when a deliberately chosen mirror plan requires it.
The browser does not receive unrestricted access to the computer. The user chooses the directory, and read or write permission is part of the security model.
MDN documents these capabilities in the File System API.
Step 1: Decide What “Update” Means for Your Folders
Before touching the files, define the desired result.
Suppose you have:
Projects/2026/
and:
Backup/Projects/2026/
If the backup should become an exact representation of the project folder, you want a mirror style workflow.
If the backup contains older material that must remain even when it no longer appears in the current project folder, you want an update style workflow.
That choice controls how destination only files are treated.
Step 2: Select Both Local Folders
Open the Free Online File Manager tool and choose Folder A and Folder B.
A supported browser will display its own folder picker. The site cannot simply open arbitrary directories without that user action.
Directory picker support still varies between browsers. MDN currently marks showDirectoryPicker() as limited availability, so a web app should detect compatibility rather than pretend every browser behaves identically.
Step 3: Compare Before Copying
Do not start by copying every file.
A comparison can identify:
- Files only in Folder A
- Files only in Folder B
- Files where A appears newer
- Files where B appears newer
- Files with different contents
- Files considered identical
This gives you a difference list that is much easier to reason about than a blind recursive copy.
Fast metadata comparison
A fast comparison typically uses relative path, name, size, and modification information. This is useful when the filesystem metadata is trustworthy.
Exact content comparison
Content comparison reads the corresponding files and checks the actual data. It is useful when you need stronger evidence that two files match.
The tradeoff is additional I/O. A 20 GB media archive takes more work to read byte for byte than to inspect filenames, sizes, and modification times.
Step 4: Choose Update, Mirror, or Custom Rules
Update Destination
Use Update Destination when Folder A is supplying new and changed files to Folder B but destination only files should remain.
This is often the safer backup pattern.
For the preservation-focused workflow, read how to match folders without deleting destination files.
Mirror A to B
Use Mirror when Folder B should match Folder A, including removal of files that exist only in B.
This can be destructive, so inspect the removal list carefully.
Review how to mirror one folder to another safely before using this mode on an important destination.
Custom Plan
Use custom rules when neither preset matches the job. You might copy A only files to B, ignore B only files, and manually decide what to do with files where both sides have changed.
Step 5: Preview the Operation
The preview should show exactly which file will be copied, replaced, skipped, or removed.
For a small example, Folder A might contain:
docs/proposal.docx
assets/logo.svg
while Folder B contains:
docs/proposal.docx
assets/logo-old.svg
The preview should make it obvious whether logo-old.svg will stay or be removed. That depends on the selected reconciliation rule.
A preview is more valuable than a generic confirmation message because it exposes the consequences before the filesystem changes.
Step 6: Run the Update and Review Results
After approval, the browser can perform the permitted file operations while showing progress.
For important copies, follow the separate guide to verifying copied files after folder reconciliation.
Review the final report for:
- Completed copies
- Skipped items
- Failed writes
- Permission errors
- Verification failures if verification is enabled
- Cancelled operations
If a file fails, retrying that item is better than assuming the whole folder completed successfully.
What You Do Not Get Without Installed Software
A browser based file manager is excellent for on demand work, but it should not claim capabilities that require deeper system integration.
FilesManager.online does not present itself as a background service, Windows Task Scheduler integration, continuous monitoring replacement, locked file copier, SFTP client, or full NTFS metadata migration utility.
Installed desktop utilities may provide scheduled batch jobs and continuous monitoring through operating-system integration. Those capabilities are different from an on-demand browser session.
When Browser Based Update Is a Good Fit
It works well for occasional tasks such as:
- Updating an external drive
- Comparing a project folder with a backup
- Copying changed documents to a USB drive
- Checking two photo folders before consolidation
- Inspecting an old folder and a new folder before choosing a direction
If you need unattended overnight schedules or continuous monitoring, desktop software is the more appropriate category.
Conclusion
To match two folders without installing software, use a difference first workflow: select both directories, compare them, choose a rule, inspect the planned changes, and only then approve file operations.
For an on demand local job, start with the Free Online File Manager tool. If your real goal is to combine several folders into one destination rather than maintain two states, use the Free Online Folder Merger.