Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@involvex/supercopy) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
SuperCopy
SuperCopy is a high-performance file utility for Windows. It started as a command-line tool to accelerate file copying and has now evolved into a full-featured desktop application with a graphical user interface (GUI).
It is designed to be significantly faster than the default Windows copy tool and now also supports unpacking for major archive formats.
Features
- Graphical User Interface (GUI): A clean, modern, and easy-to-use interface for all copy and unpack operations.
- High-Performance Copying:
- Multi-Threaded: Uses a pool of concurrent threads to copy multiple files in parallel.
- Optimized Buffers: Uses a large I/O buffer to speed up the transfer of large files.
- Archive Unpacking: Unpack
.zip,.7z, and.rararchives directly within the application. - Real-Time Progress: Dual progress bars show file-count progress and total size progress for any operation.
- Data Integrity Check: Optional
--verifyflag in the CLI to perform a SHA-256 checksum on copied files.
Installation
To install SuperCopy globally via npm, you need Node.js and npm installed on your system.
- Install Node.js & npm: If you don't have them, download and install Node.js from nodejs.org. npm is included with Node.js.
- Install SuperCopy: Open your terminal (Command Prompt, PowerShell, Git Bash) and run:
npm install -g @involvex/supercopy
- Usage: After installation, you can launch the GUI by typing
supercopyor use the CLI with arguments:supercopy supercopy --help supercopy <source> <destination> --unpack
Usage
GUI Mode
Simply launch the SuperCopy application from your Start Menu.
- Select Source: Click the "Browse" button to select a source file or directory.
- Select Destination: Click the "Browse" button to select a destination directory.
- Choose Operation:
- If you select a normal file or folder, the main button will say "Copy".
- If you select a
.zip,.7z, or.rarfile, the button will automatically change to "Unpack".
- Set Options: Check "Verify files" if you want to ensure data integrity after copying (this option is disabled for unpacking).
- Start: Click the "Copy" or "Unpack" button to begin. Progress will be displayed in real-time.
Command-Line Mode
The original CLI is still available for scripting and automation.
Copy Syntax
supercopy <source> <destination> [options]- Arguments:
source: The source file or directory to copy.destination: The destination path.
- Options:
-w, --workers: Number of concurrent threads to use.-b, --buffer: I/O buffer size in bytes.--verify: Verify file integrity after copying using SHA-256.
Unpack Syntax
supercopy <archive_path> <destination_path> --unpack- Arguments:
archive_path: The.zip,.7z, or.rarfile to unpack.destination_path: The folder where files will be extracted.
- Required Flag:
--unpack: Switches the tool to unpacking mode.
Build from Source (for Developers)
If you wish to build the SuperCopy.exe executable yourself (e.g., to make changes or prepare a new version for npm publishing):
Prerequisites:
- Python 3.9+ installed and added to your system PATH.
- Node.js and npm installed (if you plan to publish to npm).
- Basic understanding of command-line operations.
Clone the Repository:
git clone <your-repo-url> cd supercopy
Prepare 7-Zip (for unpacking .rar files):
- The SuperCopy application relies on
7z.exebeing available in your system's PATH for RAR unpacking. - If you do not have 7-Zip installed, download it from the official 7-Zip website and install it. Ensure its executable directory is added to your system's PATH.
- The SuperCopy application relies on
Run the Build Script:
- Execute the
build.batscript in the project root:
build.bat
- This script will automatically create a Python virtual environment, install all Python dependencies (
customtkinter,tqdm,pyinstaller,py7zr), and run PyInstaller to createdist\SuperCopy.exe.
- Execute the
Locate the Executable:
- The final executable,
SuperCopy.exe, will be located in thedistdirectory.
- The final executable,