It work! I din't know, that Löve is saving the files in Appdata.
Thanks!
Brian
Search found 2 matches
- Tue Apr 05, 2016 1:55 pm
- Forum: General
- Topic: Problem with love.filesystem
- Replies: 2
- Views: 801
- Mon Apr 04, 2016 5:10 pm
- Forum: General
- Topic: Problem with love.filesystem
- Replies: 2
- Views: 801
Problem with love.filesystem
Hi, i try to write a string into a txt file with love.filesystem: function love.load() file = love.filesystem.newFile("cool.txt") file:open("w") for x = 1, 5 do file:write("This is cool line number "..x) end file:close() end function love.draw() love.graphics.print(&quo...