file_pickup 0.1.0

Copy files and folders to the clipboard, achieving the same result as right-click copy.
Documentation
file_pickup
===
Copy files and folders to the clipboard, achieving the same result as right-click copy.

## Compatability

- [x] Windows
- [x] MacOS
- [ ] Linux (TBD)

## Usage

To use `file_pickup`, add this to your `Cargo.toml`:

```toml
[dependencies]
file_pickup = "0.1.0"
```

## Examples

```rust
use file_pickup::copy_to_clipboard;

copy_to_clipboard(["docs/**/*.pdf"])
```

## References

- [Documentation]https://crates.io/crates/file_pickup
- https://github.com/b1tg/pickup
- https://stackoverflow.com/q/25708895