Skip to main content

A tool for preserving files with path normalization and verification

Project description

Preserve

Version Python License Platform

A cross-platform file preservation tool with path normalization, verification, and restoration capabilities.

Why another backup tool?

Have you ever had a situation where you ran out of space on a hard-drive and needed to robocopy / rsync / move an assortment of adhoc folders and files from one drive to another, but you needed an easy way to map those files back to the original source directory later?

Or perhaps you've needed to copy a batch of folders from one machine to multiple lab computers that all shared a similar folder layout, and you got tired of manually copying the folders one-by-one for each box when there are subtle differences (pro-tip: Syncthing and BTSync/Resilio are handy but not perfect when there are differences to sort out with Beyond Compare).

Or get frustrated with creating one-off scripts each time files needed to be distributed; and worried whether that copy actually transferred correctly and all files are intact?

Enter preserve...

Features

  • Path Preservation: Copy or move files with multiple path preservation styles:
    • Relative paths that maintain directory structure (--rel)
    • Absolute paths with drive letter preservation (--abs)
    • Flat structure with all files in one directory (--flat)
  • Verification: File integrity verification with multiple hash algorithms (MD5, SHA1, SHA256, SHA512)
  • Metadata: Preserve file attributes (timestamps, permissions, etc.)
  • Manifests: Detailed operation tracking with automatic versioning for multiple operations
  • Restoration: Restore files to their original locations with verification
  • DazzleLink: Optional integration with dazzlelink for enhanced metadata storage and file references
  • Cross-Platform: Works on Windows, Linux, and macOS

Installation

pip install dazzle-preserve

Note: The PyPI package is named dazzle-preserve, but you still import and use it as preserve:

import preserve  # Import name stays the same

For full functionality on Windows, install with the Windows extras:

pip install dazzle-preserve[windows]

For dazzlelink integration:

pip install dazzle-preserve[dazzlelink]

Usage

Basic Usage

Most common: Backup an entire directory with all subdirectories

preserve COPY "C:/my-project" --recursive --rel --includeBase --dst "E:/backup"

Important: Always use --recursive (or -r) when copying directories. Without it, preserve will only look for files directly in the source directory, not in subdirectories.

Copy specific file types from a directory tree

preserve COPY --glob "*.docx" --srchPath "C:/documents" --recursive --dst "D:/archive"

Copy files from a list (loadIncludes)

preserve COPY --loadIncludes "files-to-copy.txt" --dst "E:/backup" --rel

The files-to-copy.txt file should contain one file or directory path per line:

C:/data/report.docx
C:/projects/myapp/src/main.py
C:/photos/vacation/

Verify backup integrity

preserve VERIFY --src "C:/my-project" --dst "E:/backup" --hash SHA256

Restore files to their original locations

# Restore latest backup
preserve RESTORE --src "E:/backup"

# List all available restore points
preserve RESTORE --src "E:/backup" --list

# Restore specific operation by number
preserve RESTORE --src "E:/backup" --number 2

Path Preservation Options

  • --rel: Preserve relative paths
  • --abs: Preserve absolute paths (with drive letter as directory)
  • --flat: Flatten directory structure (all files in destination root)
  • --includeBase: Include base directory name in destination path

Other Options

  • --hash: Specify hash algorithm(s) for verification (MD5, SHA1, SHA256, SHA512)
  • --verify: Verify files after operation
  • --dazzlelink: Create dazzlelinks to original files
  • --dry-run: Show what would be done without making changes
  • --overwrite: Overwrite existing files in destination

See preserve --help for full documentation and examples.

Working with Multiple Operations

Preserve automatically manages manifests when you run multiple operations to the same destination:

Sequential Operations Example

# First operation - copies dataset A
preserve COPY "C:/data/dataset-A" -r --includeBase --rel --dst "E:/backup"
# Creates: preserve_manifest.json

# Second operation - copies dataset B
preserve COPY "C:/data/dataset-B" -r --includeBase --rel --dst "E:/backup"
# Auto-migrates first manifest to preserve_manifest_001.json
# Creates: preserve_manifest_002.json

# Third operation - copies dataset C
preserve COPY "C:/data/dataset-C" -r --includeBase --rel --dst "E:/backup"
# Creates: preserve_manifest_003.json

Managing Multiple Manifests

# List all available restore points
preserve RESTORE --src "E:/backup" --list
# Output:
#   1. preserve_manifest_001.json (2025-09-18 14:30:00, 150 files)
#   2. preserve_manifest_002.json (2025-09-18 14:55:00, 75 files)
#   3. preserve_manifest_003.json (2025-09-18 15:20:00, 200 files)

# Restore specific dataset (e.g., dataset B from operation 2)
preserve RESTORE --src "E:/backup" --number 2

# Restore latest operation (dataset C)
preserve RESTORE --src "E:/backup"

# Restore with short option
preserve RESTORE --src "E:/backup" -n 1  # Restores dataset A

User-Friendly Manifest Naming

You can rename manifests to include descriptions:

# Rename manifests for clarity (Windows)
ren preserve_manifest_001.json preserve_manifest_001__dataset-A.json
ren preserve_manifest_002.json preserve_manifest_002__dataset-B.json

# On Linux/Mac
mv preserve_manifest_001.json preserve_manifest_001__dataset-A.json

# The descriptions appear in --list output:
preserve RESTORE --src "E:/backup" --list
#   1. preserve_manifest_001__dataset-A.json - dataset-A (2025-09-18 14:30:00, 150 files)
#   2. preserve_manifest_002__dataset-B.json - dataset-B (2025-09-18 14:55:00, 75 files)

Important Notes

  • No Overwrites: Each operation creates a new manifest, preserving all history
  • Backward Compatible: Single operations still work exactly as before
  • Auto-Migration: The system automatically handles the transition from single to multiple manifests
  • Independent Restoration: Each manifest can be restored independently

Recommended Workflow for Important Data

For data you really care about, follow this multi-step workflow to ensure end-to-end data integrity:

Step 1: Pre-Verification (Create baseline hashes)

# Windows: Use certutil to create SHA256 hashes
cd C:\my-project
for /r %i in (*) do certutil -hashfile "%i" SHA256 >> ..\source-hashes.txt

# Linux/Mac: Use shasum or sha256sum
cd /path/to/my-project
find . -type f -exec sha256sum {} \; > ../source-hashes.txt

Step 2: Copy with Structure Preservation

# Copy with relative paths and include base directory
preserve COPY "C:/my-project" --recursive --rel --includeBase --dst "E:/backup" --hash SHA256

Step 3: Post-Copy Verification

# Verify all files match their source
preserve VERIFY --src "C:/my-project" --dst "E:/backup" --hash SHA256 --report verify-report.txt

# Check the report for any mismatches
type verify-report.txt

Step 4: Test Restoration

# First, do a dry run to see what would be restored
preserve RESTORE --src "E:/backup" --dry-run

# If everything looks correct, restore to a test location
preserve RESTORE --src "E:/backup" --dst "C:/test-restore" --verify

Understanding RESTORE --dst Behavior

When using --dst to restore to a different location, preserve maintains the backup's directory structure, not the original source structure. This respects the path style choice (--rel, --abs, --flat) made during backup creation.

Examples:

  1. Relative with Base Directory (--rel --includeBase):

    # Backup created with:
    preserve COPY my-project/ --dst backup/ --rel --includeBase
    # Creates: backup/my-project/file.txt
    
    # Restore to new location:
    preserve RESTORE --src backup/ --dst restored/
    # Result: restored/my-project/file.txt
    
  2. Flat Structure (--flat):

    # Backup created with:
    preserve COPY my-project/ --dst backup/ --flat
    # Creates: backup/file.txt (no subdirectories)
    
    # Restore to new location:
    preserve RESTORE --src backup/ --dst restored/
    # Result: restored/file.txt (maintains flat structure)
    
  3. Absolute Paths (--abs):

    # Backup created with:
    preserve COPY C:/data/file.txt --dst backup/ --abs
    # Creates: backup/C/data/file.txt
    
    # Restore to new location:
    preserve RESTORE --src backup/ --dst restored/
    # Result: restored/C/data/file.txt (preserves full path structure)
    

Key Point: The restored structure mirrors what's in your backup directory, preserving your original backup organization choice.

Step 5: Validate Restoration

# Compare restored files with original hashes
# Windows
cd C:\test-restore\my-project
for /r %i in (*) do certutil -hashfile "%i" SHA256 >> ..\..\restored-hashes.txt
fc ..\..\source-hashes.txt ..\..\restored-hashes.txt

# Linux/Mac
cd /path/to/test-restore/my-project
find . -type f -exec sha256sum {} \; > ../../restored-hashes.txt
diff ../../source-hashes.txt ../../restored-hashes.txt

Step 6: Source Cleanup (Only after validation)

# Only remove originals after all verifications pass
# Keep the preserve_manifest*.json files in the backup for future restoration

Important: Never delete your source files until you've verified the backup AND successfully tested restoration.

What's New

See CHANGELOG.md for a detailed history of changes.

Latest Release (v0.5.x)

This is a maintenance development cycle. The current goal is stabilize and fully test all major uses of preserve (COPY, MOVE, RESTORE, and VERIFY) with no missing flags / functionality before 0.6.x.

Recent Highlights

  • Advanced Filtering: Exclude patterns, depth control, time-based selection
  • Three-Way Verification: Source, destination, or both forms of verifications during restore operations
  • Sequential Manifests: Support for multiple operations to same destination
  • GitRepoKit Versioning: Automated version management with git hooks
  • Document Tidying: Improving versioning, README, CHANGELOG, and other docs

Contributing

Contributions are welcome! Feel free to submit a pull request.

Like the project?

"Buy Me A Coffee"

Acknowledgments

  • dazzlelink - Enhanced metadata storage and file references
  • GitRepoKit - Automated version management system
  • Community contributors - Testing, feedback, and improvements

License

preserve, aka preserve.py, Copyright (C) 2025 Dustin Darcy

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dazzle_preserve-0.6.2.tar.gz (144.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dazzle_preserve-0.6.2-py3-none-any.whl (128.5 kB view details)

Uploaded Python 3

File details

Details for the file dazzle_preserve-0.6.2.tar.gz.

File metadata

  • Download URL: dazzle_preserve-0.6.2.tar.gz
  • Upload date:
  • Size: 144.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dazzle_preserve-0.6.2.tar.gz
Algorithm Hash digest
SHA256 3247f3d6e76210ff0b3b407cd9679f9a92e2544ac83e9a37f928cd81d76a19f1
MD5 31cae3c8ab561c5e6c4c4b89d8594bd6
BLAKE2b-256 364bd2d5f4d5f79b56881842b1f7e59825acf54847dd21f9bcaeead6450f74f1

See more details on using hashes here.

File details

Details for the file dazzle_preserve-0.6.2-py3-none-any.whl.

File metadata

File hashes

Hashes for dazzle_preserve-0.6.2-py3-none-any.whl
Algorithm Hash digest
SHA256 34a9dae5aa3aaab728df022bebf33d1ed7eece1fd72e9b1f760abfbd49865663
MD5 0bb0786ec1c3d9e1586fa2c3723012a1
BLAKE2b-256 69e43ce2b45d661a80a2f2dabd66aa25e8a2e0e774d37202a33a7991a4858e1e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page