Question Delete temporary files of my plugin from PluginData folder

RustyMasamune

New member
Messages
4
Reactions
1
Points
3
Hello, my plugin creates JSON save files in "Saves/PluginData/MyName". I want to create a "clear cache" button, it will delete them all at once.

But to access FileManager I need to connect MVR.FileManagement, which is prohibited. Any other options?
 
Solution
C#:
using MVR.FileManagementSecure;

Not the base one. "Secure" is made and thought to prevent access to critical files and external system files for creators.
C#:
using MVR.FileManagementSecure;

Not the base one. "Secure" is made and thought to prevent access to critical files and external system files for creators.
 
Upvote 0
Solution
Back
Top Bottom