Tensionix ENDERU
GitHub28 repositoriesDaily Tech3 subscribersaudion.devthe product shelfRSSrelease feed
← All notesProjects

Audion Disk Tools

Portable-first Windows disk and file operations toolkit for audit, compare, sync, backup mirror, very broad file-type filtering, powerful archiving, and network/SMB workflows from one GUI/CLI tool.

The project is no longer centered on two fixed project folders. In the GUI you can choose any Source and any Target, work directly with external drives, network paths, and large directories, list source files, synchronize, or build archives without copying terabytes into the project first.

At a glance:

The project keeps two main user launchers:

It also now includes:

Current launcher behavior:

GUI Shell In Detail

Start the GUI with:

launcher_gui.cmd

The GUI does not replace the CLI; it turns it into a practical file-manager workbench. The left side is for route, mode, and parameters, while the right side keeps status, progress, and live terminal output visible. Action labels stay short; detailed meaning lives in tooltips, README text, and operation descriptions.

Main GUI areas:

GUI mode meanings:

Dry-run/preview is still useful for diagnostics and review, but real safety comes from operation policies and phased apply logic.

What the project does

Manifest / Diff

Build a filtered Source -> Target diff from the current Workbench route and apply it as One-Way copy/update or BACKUP-MIRROR. Empty extension selection means all files. The service checksum commands can still create and verify __CHECKSUMS__.b3 for source or target when a standalone integrity manifest is needed.

Compare

Compare source and target and write reports into output\.

One-way sync

Copy only new or changed files from source into target.

Backup mirror

Mirror source into target. Backup mirror is intentionally hard: target-only files are deleted after successful copy/update/verify phases. MIRROR_SAFE is available as an alternate quarantine policy.

Full sync two-way

Run sync2 to propagate missing or newer files in both directions without automatic deletions.

Archiving

Create archives from the selected source into the selected target. The main GUI line exposes ZIP, 7Z, SFX, TAR, TAR.GZ, and TAR.ZSTD when the required backend is available; TAR.LZ4 appears only when lz4.exe is found. ZIP/7Z/SFX support password encryption; 7Z/SFX also support name encryption; unsupported combinations are dimmed in the GUI. Archives can be verified after creation before optional source deletion. SFX can use Windows environment variables for auto-extraction paths and can optionally be wrapped after SFX compression into ZIP/7Z/ZSTD/TAR/GZ containers for easier transport.

DATA TRANSFER

DATA TRANSFER leads the ROOT list. It used to be two sections — Network operations for LAN, SMB and UNC, and RClone operations for rclone remotes. They split one job by tool rather than by task, so choosing a button meant knowing in advance which tool could reach where.

Now you choose the operation — One-way, Mirror, Move, Two-way, Verify — and the destination. The destination can be a list: one master, several machines, one run. The engine follows from each pair and is named on screen: Robocopy for folders and shares, RClone for clouds, two-way sync and hash comparison. The whole fan-out is built before anything starts, so an impossible pair shows up before the first byte moves.

Pack first archives the source and sends the archives instead of loose files — the only thing that helps with many small files over a network: measured at 24 MB/s for one file against 0.46 MB/s for three hundred small ones. Every operation has a dry run. The delete ceiling (--max-delete) is available and never imposed.

Alongside it in the same section: Storage (size, duplicates, checksums, public links), Connections (OAuth for Yandex/Drive/OneDrive/Dropbox/Box/Mega, S3-compatible by key, SFTP, config encryption) and Diagnostics.

GUI shell

launcher_gui.cmd

Main project launcher

launcher_project.cmd

Russian project launcher

launcher_project_ru.cmd

Profiles launcher

launcher_profiles.cmd

Russian profiles launcher

launcher_profiles_ru.cmd

Builder

builder_main.cmd

Tools and release utilities

launcher_tools.cmd

CLI examples

Create a manifest:

runtime\python.exe system_core\main.py manifest --root "D:\Media" --project-root "%CD%"

Verify a manifest:

runtime\python.exe system_core\main.py verify --root "D:\Media"

List configured pairs:

runtime\python.exe system_core\main.py pairs

Compare a saved pair:

runtime\python.exe system_core\main.py compare --pair "docs_backup"

Run a saved backup pair with its configured policy:

runtime\python.exe system_core\main.py backup --pair "docs_backup"

Preview a backup pair:

runtime\python.exe system_core\main.py backup --pair "docs_backup" --dry-run

Run safe mirror manually:

runtime\python.exe system_core\main.py backup --source "D:\Work" --target "X:\Backup" --mode safe

Run hard-delete mirror manually:

runtime\python.exe system_core\main.py backup --source "D:\Work" --target "X:\Backup" --mode strict

Run full sync two-way manually:

runtime\python.exe system_core\main.py sync2 --source "D:\Notes" --target "X:\Notes" --mode safe --dry-run

Exit codes: apply commands return 0 only when errors + conflicts == 0; real sync2 conflicts are not clean success. Preview uses the same conflict/error summary in its JSON output.

Quarantine cleanup is manual and auditable: review _audion_quarantine\... and the generated quarantine report before deleting old quarantine folders.

Current project layout

Cleanup and init folders

install\init_folders.cmd creates the project folders expected by the GUI and CLI: input, output, logs, report, workspace, data, runtime, wheelhouse, release, ._runtime, system_core, install, and licenses.

cleanup_project.cmd is a source-cleanup helper for preparing a clean portable folder. It keeps source files, docs, permanent configs, sync profiles, and licenses, while clearing managed input/output/logs/report/workspace/data, runtime/build payloads, temp folders, and Python caches. It checks Audion Disk Auditor project markers and refuses to clean outside the project root.

Launcher temp scheme

The main launchers now use dedicated fixed temp files under ._runtime\:

The old split *_fzf.cmd launcher generation is being retired in favor of the unified template-style launcher flow.

Validation Snapshot

Confirmed on real folders during the current validation pass:

Still interactive by nature:

Limitations

The project works with paths that Windows or Python can access as normal directories:

It does not talk directly to cloud APIs.

Practical recommendation

For day-to-day Backup mirror jobs, keep operation_policy=mirror_hard and mode=safe. Old dry_run_default keys are ignored with a deprecation warning; use explicit operation_policy instead.

Canonical Workbench labels

Workbench uses the same Audion Image Tools public vocabulary in every project. Its buttons always keep the same order and labels: Source, Add file..., Target, Reset, Delete, List.

Reset returns to project input/output and does not delete files; Delete clears the current Source and Target only after confirmation. The exact Russian labels are Источник, Добавить файл..., Назначение, Сбросить, Удалить, Список. The Workbench variants Destination, Clear, Цель, and Очистить are not used.

Edited 08.28.2026