Author Topic: creating files using fileobjects?  (Read 985 times)

is this possible?
i'm trying to create multiple files that has a user's data in it for every single user (don't worry i already know how to save data to a file), but i don't know how to create files or name them.
if it cant be done using fileobjects i'm fine with it. but i need a way
« Last Edit: December 30, 2014, 02:19:21 PM by ZombieDude »

You just use .openforwrite("file/path/name.ext"), and if the file doesn't exist, it'll create it

You just use .openforwrite("file/path/name.ext"), and if the file doesn't exist, it'll create it
OH ok thank you
locking