3 个版本
0.1.2 | 2020年2月1日 |
---|---|
0.1.1 | 2020年1月29日 |
0.1.0 | 2020年1月28日 |
5 在 #ds-store
4KB
垃圾
过滤掉操作系统垃圾文件,如 .DS_Store 和 Thumbs.db。这是对 https://github.com/sindresorhus/junk 的 Rust 实现
API
use junk;
junk::is(&path);
如果 filename
匹配垃圾文件,则返回 true
junk::not(&path);
如果 filename
不匹配垃圾文件,则返回 true
junk::REGEX
用于匹配垃圾文件的正则表达式。
lib.rs
:
过滤掉操作系统垃圾文件,如 .DS_Store 和 Thumbs.db
示例
use junk;
junk::is(".test.swp"); // Check if filename is junk.
junk::not(".test.swp"); // Check if filename is not junk.
依赖项
~2.2–3MB
~54K SLoC