I am working on a feature right now where i need to create a config.json file on the Rust side and read that file on the JS side.
I've looked at the FS and Path API's - but i am a little confused.
How do i save a file to a specific location like confDir on the rust side - righht now i am just writing a file to config/json local to the app install directory using an std::fs::write. Which i know is not a good solution.
Any help would be great 🙂
