10 个版本 (5 个稳定)
2.1.0 | 2021年9月4日 |
---|---|
2.0.0 | 2021年7月23日 |
1.1.0 | 2021年2月13日 |
1.0.1 | 2021年1月18日 |
0.1.2 | 2021年1月13日 |
#23 in #delete-file
58 每月下载量
用于 2 crates
5KB
75 行
这是一个用于轻松打开文件的 cargo。
将文件读入字符串:read_file(&str) 返回字符串
逐行读取文件:read_file_lines(&str) 返回字符串向量
写入文件:write_file(&str,&str) (文件名,文件内容)
删除文件:remove_file(&str) 使用文件名删除文件
保存字节数组:write_file_bytes(&str,Vec u8)
read_file_bytes (&str: filename)