Hello,
I am wondering how I would go about making a file browser so the user can choose files to load a save.
Thanks
Hello,
I am wondering how I would go about making a file browser so the user can choose files to load a save.
Thanks
You’d want to check the .Net MSDN/Mono docs (MSDN is generally easier to search and has more complete info, that is, if the page loads at all in your browser).
What you are looking for is the FileInfo class and its kin.
After that you would have to write your own GUI to handle it all of course, but that’s how you get access to the file system.
Also be aware that Application.dataPath is a nice convenience property to get the local file path of your game (check the docs for it).
-Jeremy
thanks