1 个稳定版本
1.0.0 | 2024 年 8 月 10 日 |
---|
#536 在 文件系统
每月 115 次下载
49KB
263 行
splitx
splitx 是一个小的 Rust 库,用于将文本文件分割成多个部分,每个部分的大小小于指定的最大字节数。
用法
要使用 splitx
,请将以下内容添加到您的 Cargo.toml
[dependencies]
splitx = "1.0"
库的 split
函数具有以下参数
file_path: the path of the file to be split,
max_file_size_bytes: the maximum size of each piece of the file in bytes after splitting,
num_header_lines: how many lines are the file's header. If no header lines, use 0. Header lines will be kept in each of the pieces.
output_dir: where to write the pieces of the file.