{"id":22370380,"url":"https://github.com/alpheusday/filego.rs","last_synced_at":"2025-07-30T20:31:48.174Z","repository":{"id":241072594,"uuid":"804263841","full_name":"alpheustangs/filego.rs","owner":"alpheustangs","description":"A file splitting \u0026 merging solution","archived":false,"fork":false,"pushed_at":"2024-10-13T11:21:37.000Z","size":53,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-13T14:15:09.283Z","etag":null,"topics":["check","file","filego","filesystem","merge","rust","split"],"latest_commit_sha":null,"homepage":"https://docs.rs/filego","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alpheustangs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2024-05-22T09:07:50.000Z","updated_at":"2024-10-13T11:20:08.000Z","dependencies_parsed_at":"2024-06-25T15:01:29.976Z","dependency_job_id":"9de532a5-26d9-4a8f-9a89-ae692129c6bb","html_url":"https://github.com/alpheustangs/filego.rs","commit_stats":null,"previous_names":["alpheustangs/filego-rust","alpheustangs/filego.rs"],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alpheustangs%2Ffilego.rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alpheustangs%2Ffilego.rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alpheustangs%2Ffilego.rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alpheustangs%2Ffilego.rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alpheustangs","download_url":"https://codeload.github.com/alpheustangs/filego.rs/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228182939,"owners_count":17881594,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["check","file","filego","filesystem","merge","rust","split"],"created_at":"2024-12-04T19:45:05.796Z","updated_at":"2025-07-30T20:31:47.841Z","avatar_url":"https://github.com/alpheustangs.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FileGo\n\n\u003e **⚠️ This project is discontinued. Please migrate to [`FileRune`](https://github.com/filerune/rust) for future updates and maintenance.**\n\nA file splitting \u0026 merging solution.\n\n## Installation\n\nTo install this package, run the following command:\n\n```bash\ncargo add filego\n```\n\n## Quick Start\n\nSplit file from a path to a directory with `Split` struct.\n\n```rust\nuse std::path::PathBuf;\n\nuse filego::split::{Split, SplitResult};\n\nlet result: SplitResult = Split::new()\n    .in_file(PathBuf::from(\"path\").join(\"to\").join(\"file\"))\n    .out_dir(PathBuf::from(\"path\").join(\"to\").join(\"dir\"))\n    .run()\n    .unwrap();\n```\n\nAsync version also available with the `async_std` and `tokio` features:\n\n```rust\n// This is a `async_std` example\n\nuse async_std::path::PathBuf;\n\nuse filego::split::{\n    Split,\n    SplitResult,\n    async_std::SplitAsyncExt as _,\n};\n\nlet result: SplitResult = Split::new()\n    .in_file(PathBuf::from(\"path\").join(\"to\").join(\"file\"))\n    .out_dir(PathBuf::from(\"path\").join(\"to\").join(\"dir\"))\n    .run_async()\n    .await\n    .unwrap();\n```\n\n```rust\n// This is a `tokio` example\n\nuse std::path::PathBuf;\n\nuse filego::split::{\n    Split,\n    SplitResult,\n    tokio::SplitAsyncExt as _,\n};\n\nlet result: SplitResult = Split::new()\n    .in_file(PathBuf::from(\"path\").join(\"to\").join(\"file\"))\n    .out_dir(PathBuf::from(\"path\").join(\"to\").join(\"dir\"))\n    .run_async()\n    .await\n    .unwrap();\n```\n\n## License\n\nThis project is licensed under the terms of the MIT license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falpheusday%2Ffilego.rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falpheusday%2Ffilego.rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falpheusday%2Ffilego.rs/lists"}