If one wanted to show a file in a File Explorer or use the similar "Reveal in Finder" feature found on OSX, how could you do that in rust? Is there a crate that could help?
fn main(){
reveal_file("tmp/my_file.jpg")
//would bring up the file in a File Explorer Window
}
I'm looking for something similar to this python solution.