Jump to content

fileCreate


orel56000

Recommended Posts

local newFile = fileCreate("test.txt")                -- attempt to create a new file 
if (newFile) then                                       -- check if the creation succeeded 
    fileWrite(newFile, "This is a test file!")        -- write a text line 
    fileClose(newFile)                                -- close the file once you're done with it 
end 

working on server side but doesen't working on client side and its sheared function command, why?

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...