So I already built my app that works on windows, and currently trying to make it work on Linux and Mac
I use paths a lot to read and write files locally, and been using backward slash "\" for windows paths
And trying it on Linux it would not find files, or just write the path in the filename like "directory\filename.jpg"
Now I read Windows seems to accept forward slash "sometimes", so should I use "/" everywhere?
Anyway what's best practice to treat paths for use on all systems?