Fast and reliable Android device backup tool for Windows. Transfer files from your Android device to your PC faster than Windows File Explorer. Android Platform Tools are official and provided unmodified - you can download them yourself from Google's official site if you prefer. Please check known issues near the end of README.
- Full or Partial Backups - Full
/sdcard(skipsAndroid/) or a selected top-level folder - Per-folder ADB pulls - Full backup pulls each top-level item separately instead of one giant
/sdcardpull - Fast Transfer - Uses ADB protocol for faster speeds than MTP
- Real-time Progress - Live transfer rate, progress bar, file count, and current folder
- Completeness verification - Compares device vs local file counts after transfer
- Gap fill / repair - Re-pulls incomplete subdirectories; streams problem filenames via
adb exec-out - Smart Existing Backup Handling - Merge, replace, or cancel when files already exist
- Safe Operation - Critical system directory protection and confirmation prompts
- Prevents backup to critical system directories
- Disk space checking with warnings
- Safe cleanup on hard failure (only if the directory was created by the tool and nothing usable transferred)
- Incomplete backups are kept (not deleted) and marked with
backup_incomplete.txt - Network drive detection and performance warnings
- Automatic USB debugging verification / ADB server restart
- Windows 10 or later
- Android device with USB debugging enabled
- USB cable for device connection
- Download the project zip
- Unzip and run the .exe
- The folder structure should be:
Android-Archiver/ ├── Android Archiver.exe └── platform-tools/ ├── adb.exe ├── AdbWinApi.dll ├── AdbWinUsbApi.dll └── ... - Keep the
.exeandplatform-toolsfolder together
-
Enable USB Debugging on your Android device:
- Go to Settings → About Phone
- Tap "Build Number" 7 times to enable Developer Options
- Go to Settings → Developer Options
- Enable "USB Debugging"
-
Connect your device:
- Connect via USB cable
- Set USB mode to "File Transfer" or "MTP"
- Approve the USB debugging authorization prompt on your device
- Run
Android Archiver.exe - Device information will be displayed automatically
- Choose backup location (default:
Documents/AndroidBackup) - If location already has files, choose to merge, replace, or cancel
- Select backup type:
- Option 1: Full backup (entire
/sdcard, excludesAndroid/folder) - Option 2: Partial backup (select specific folder)
- Option 1: Full backup (entire
- Enter estimated backup size in GB (used for the progress bar only)
- Wait for transfer to complete
- Review verification output (device vs local file counts). Check
backup_errors.logif anything was skipped or repaired.
============================================================
Android Archiver v1.5 BETA (github/mirbyte)
============================================================
ADB Version: 35.0.1
Device Information:
- Manufacturer: Samsung
- Model: SM-G991B
- Android Version: 14
- Build Number: UP1A.231005.007
- Serial Number: R5CT1234567
Backup Location:
Default: C:\Users\YourName\Documents\AndroidBackup
Press Enter to use default, or type a custom path:
Full backup: pulling 15 top-level items (Android/ skipped)
[███████░░░░░░░░░░░░░░░░░░░░░░░] 23.4% 56.12 GB/240.00 GB (3950 files) [120.5 MB/s] | 4/15 Download
Verifying backup completeness...
- Device files: 12040 | Local files: 12040
- (Android/ excluded from comparison)
Backup completed successfully!
This application bundles the Android SDK Platform Tools, which are provided by Google and distributed under the Android Software Development Kit License.
Platform Tools are included unmodified from the official Android developer distribution. The tools are redistributed here for convenience and are subject to Google's licensing terms.
The application creates a config file android_archiver.cfg on first run. You can edit this to change the default backup location:
[DEFAULT]
backup_location = C:\Users\YourName\Documents\AndroidBackupEnvironment variables are supported using Windows %VAR% syntax (expanded with os.path.expandvars):
backup_location = %USERPROFILE%\Documents\AndroidBackupNote: ${USERPROFILE} style placeholders are not expanded on Windows. Use %USERPROFILE%.
- Ensure USB debugging is enabled
- Check that you've authorized the computer on your device
- Try a different USB cable or port
- Restart ADB server (automatically attempted by the tool)
- Use a USB 3.0 or faster port and cable
- Close other applications using the device
- Avoid network drives as backup destinations
- Check if antivirus is scanning files during transfer
- Gap-fill / per-file streaming of problem names is slower than bulk
adb pull
- Read
backup_errors.logandbackup_incomplete.txtin the backup folder - Filenames illegal on Windows (
? : * " < > |) are streamed viaadb exec-outinto sanitized local names - Re-run with merge to fill gaps, or use a partial backup of just
Download - Very long paths may still fail even with extended-path handling
- Run as administrator if backing up to protected locations
- Ensure the backup location isn't a system directory
- Protected paths under
Android/are skipped on full backup by design
- Language: Python 3.x (compiled to Windows executable)
- Version: 1.5 BETA
- Transfer Method: Per-folder
adb pull, with subdirectory gap-fill andadb exec-out catfallback for problematic files - Progress Tracking: Destination size sampling with a moving average over 5 samples (progress % depends on your size estimate)
- Verification: Device
findfile count vs local file count (Android/excluded for full backups)
- Progress % depends on the manual GB estimate; a bad guess makes the bar misleading (speed/file count are still useful)
- Progress bar and speed can stall during verification or gap-fill (device
find/ subdirectory re-pulls) - File modification times may not be preserved exactly
- Some files may still be skipped due to Android permissions or unreadable paths
- Very large transfers (100GB+) may take several hours
- Windows MAX_PATH and odd OEM storage layouts can still leave gaps; check verification counts
The author of this software is not responsible for any data loss, device damage, or other issues that may occur while using this application. Use at your own risk. Always ensure you have backups of important data before performing device operations.
- Android Debug Bridge (ADB) by Google
- Colorama for terminal colors
- The Android developer community
- Built with Python
- Packaged with PyInstaller
Repository: github.com/mirbyte/Android-Archiver
If you found this project useful, please consider giving a ⭐ !