{"id":51058495,"url":"https://github.com/cumulus13/xcom","last_synced_at":"2026-06-22T23:02:13.269Z","repository":{"id":334414273,"uuid":"1141293303","full_name":"cumulus13/xcom","owner":"cumulus13","description":"A professional Windows file operations utility providing xmove, copyx and recyclebin commands with Windows Shell integration.","archived":false,"fork":false,"pushed_at":"2026-02-14T06:27:13.000Z","size":117,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-03-01T10:24:25.398Z","etag":null,"topics":["copy","move","rust","shell","winshell"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cumulus13.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-24T15:54:25.000Z","updated_at":"2026-02-14T06:27:11.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/cumulus13/xcom","commit_stats":null,"previous_names":["cumulus13/xcom"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/cumulus13/xcom","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cumulus13%2Fxcom","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cumulus13%2Fxcom/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cumulus13%2Fxcom/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cumulus13%2Fxcom/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cumulus13","download_url":"https://codeload.github.com/cumulus13/xcom/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cumulus13%2Fxcom/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34668499,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-22T02:00:06.391Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["copy","move","rust","shell","winshell"],"created_at":"2026-06-22T23:02:11.767Z","updated_at":"2026-06-22T23:02:13.263Z","avatar_url":"https://github.com/cumulus13.png","language":"Rust","funding_links":["https://www.buymeacoffee.com/cumulus13","https://ko-fi.com/cumulus13","https://www.patreon.com/cumulus13"],"categories":[],"sub_categories":[],"readme":"# xcom\n\nA professional Windows file operations utility providing `xmove`, `copyx` and `recyclebin` commands with Windows Shell integration.\n\n## Features\n\n- **xmove**: Move files and directories using Windows Shell operations\n- **copyx**: Copy files and directories using Windows Shell operations\n- **recyclebin**: A command-line tool to manage the Windows Recycle Bin using Rust\n- Wildcard support (`*` patterns)\n- Recursive directory operations\n- Comprehensive logging with timestamps\n- Windows Shell integration for proper file handling\n- Professional command-line interface with clap\n\n[![xmove](https://raw.githubusercontent.com/cumulus13/xcom/master/xmove.png)](https://raw.githubusercontent.com/cumulus13/xcom/master/xmove.png)\n\n[![copyx](https://raw.githubusercontent.com/cumulus13/xcom/master/copyx.png)](https://raw.githubusercontent.com/cumulus13/xcom/master/copyx.png)\n\n## Installation\n\n### Option 1: Download Pre-built Binaries (Recommended)\n\nDownload the latest release for your platform from the [Releases page](https://github.com/cumulus13/xcom/releases):\n\n- **x86_64-pc-windows-msvc** - 64-bit Windows (Intel/AMD) - **Most Common**\n- **i686-pc-windows-msvc** - 32-bit Windows\n- **aarch64-pc-windows-msvc** - 64-bit Windows (ARM)\n\n**Steps:**\n1. Download the appropriate `.zip` file for your system\n2. Extract `xmove.exe` and `copyx.exe`\n3. Place them in a directory in your PATH, or use directly\n\n### Option 2: Install from crates.io\n\n```bash\ncargo install xcom\n```\n\n### Option 3: Build from Source\n\n```bash\ngit clone https://github.com/cumulus13/xcom\ncd xcom\ncargo build --release\n```\n\nThe binaries will be in `target/release/xmove.exe` and `target/release/copyx.exe`\n\n## Usage\n\n### Move Files\n\n```bash\n# Move single file\nxmove file.txt destination/\n\n# Move multiple files\nxmove file1.txt file2.txt dir1/ destination/\n\n# Move all files in current directory\nxmove * destination/\n\n# Move with wildcard pattern\nxmove *.txt destination/\n\n# Show version\nxmove -v \n```\n\n### Copy Files\n\n```bash\n# Copy single file\ncopyx file.txt destination/\n\n# Copy multiple files\ncopyx file1.txt file2.txt dir1/ destination/\n\n# Copy all files in current directory\ncopyx * destination/\n\n# Copy with wildcard pattern\ncopyx *.txt destination/\n\n# Show version\ncopyx --version\n```\n\n### Recyclebin\n```bash\n#clean up recycle bin\nrecyclebin -c\n```\n\n## Logging\n\nAll operations are logged to `xcom.log` in the same directory as the executable, with timestamps and operation details.\n\n## Platform Support\n\nCurrently supports Windows only (requires Windows Shell APIs).\n\n## License\n\nLicensed under either of:\n\n- Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)\n- MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)\n\nat your option.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## 👤 Author\n        \n[Hadi Cahyadi](mailto:cumulus13@gmail.com)\n    \n\n[![Buy Me a Coffee](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/cumulus13)\n\n[![Donate via Ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/cumulus13)\n \n[Support me on Patreon](https://www.patreon.com/cumulus13)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcumulus13%2Fxcom","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcumulus13%2Fxcom","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcumulus13%2Fxcom/lists"}