-
Notifications
You must be signed in to change notification settings - Fork 0
Interactive Menu
official-Arvind edited this page Jun 19, 2026
·
2 revisions
Jigar Tools features an elegant, dark-themed WinForms user interface built directly into PowerShell to manage exclusions during Sync, and inclusions during Restore.
- Sync Mode (Exclude): Configured in dark mode with violet/dark accents. It lists all files/directories found on the device. Selected items are excluded from the backup snapshot.
- Restore Mode (Include): Designed in dark-green mode. It lists the backup files on your PC. Selected items are included in the restore. Items default to unchecked to prevent overwrites.
Loading 100,000+ files into a tree view at once causes long thread locks and high RAM consumption. Jigar Tools indexes folders dynamically:
- Only the root and first-level directories are loaded initially.
- Sub-folders are loaded on-the-fly when you click the expand (
+) icon. - This ensures the UI remains fully responsive and loads instantly even on massive storage devices.
The Sync engine evaluates file checkmark states dynamically:
- Checking a parent node checks all children automatically.
- Unchecking a specific sub-folder overrides the parent state.
- The backup manager parses selections from leaf nodes up to root, ensuring custom folder filters are respected.
| Button | Action |
|---|---|
| β Select All | Checks all currently loaded nodes |
| β Clear All | Unchecks all nodes |
| β Expand All | Expands the folder tree to the deepest level |
| β Collapse | Collapses the tree back to root directories |
| βΆ Proceed | Closes the menu and initiates the Titan transfer engine |
| Skip | Skips the exclusion menu and copies everything |