Search found 2 matches

by micheel665
Tue May 26, 2015 6:56 pm
Forum: General
Topic: [Solved] Cant write to file
Replies: 2
Views: 614

Re: Cant write to file

Robin wrote:Have you checked the save directory?
Thank you for pointing out the save directory for me, I checked in the roaming/love folder and the file with the text was there!
by micheel665
Tue May 26, 2015 5:21 pm
Forum: General
Topic: [Solved] Cant write to file
Replies: 2
Views: 614

[Solved] Cant write to file

Every time I try and write anything to a file it doesn't do it, I'm using the example code from the wiki. I have the note.txt in my folder. function love.load() f = love.filesystem.newFile("note.txt") f:open("w") for i = 1, 10 do f:write("This is line "..i.."!\r\n&...