deadcoder0904
deadcoder0904

Reputation: 8683

How can I list all folders by name programatically using the fd-find crate?

I want to list all folders named "test" when in my application using fd-find.

The documentation shows how to call it in the terminal but doesn't tell how to call it from code.

Upvotes: 1

Views: 138

Answers (1)

evading
evading

Reputation: 3090

By the look of it fd-find is not shipped as a library so I guess your best bet would be something like std::process::Command.

Upvotes: 2

Related Questions