XeroVolume
Member
I just had a thought: I've seen a lot of people post their scripts which require an additional directory to function. (Fonts, Snapshots, etc...) At first I didn't think twice but recently, I've been wondering why they don't have their script create a new directory automatically. I know that in Ruby this can be accomplished via the following code:
But this requires the free FileUtils module by Minero Aoki, which is included in the standard Ruby distribution but for some reason, is not available in RMXP.
Is there any other way to go about this?
Code:
FileUtils.mkdir_p 'New Folder'
But this requires the free FileUtils module by Minero Aoki, which is included in the standard Ruby distribution but for some reason, is not available in RMXP.
Is there any other way to go about this?