Reputation: 8683
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
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