[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [5.1.4/newbie] "attempt to index ... 'file' (a nil value)"?
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Fri, 18 Feb 2011 09:56:57 -0200
> local file = io.open ('/var/tmp/myfile.txt',w)
The file does not exist and you have opened if for reading.
Try
local file = io.open ('/var/tmp/myfile.txt',"w")