Hello there! This may end up being an obvious question, perhaps due to my 101-tier Rust knowledge, but so far I am seriously struggling in my search through GH Issues / Documentation.
Problem Statement: When my tauri app is assigned to handle files of a specific extension, I want to be able to capture the path of the file which has been interacted with (via either "Open With" or double-click) to open my app and pass it to front-end components for further use.
Thus far, researching native file handling has been very difficult. Issues #918 and #3736 discuss the topic of file association, and briefly touch on app ingestion of a file path as some sort of CLI argument, but both of these threads are old and vague(?) with respect to actually capturing a path and then passing it to the frontend.
What is the current best practice to actually obtain and successfully forward the path of a file which is the subject of an "Open With" interaction on Windows? (Or, alternatively, double-clicked on when the tauri app has been successfully registered as a handler of that file's extension.)
Thank you for any and all guidance on this issue.