lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Wed, Mar 12, 2008 at 3:57 AM, Rolf <rb@san.rr.com> wrote:


>  Running the script below, I got the error:
>  Test.vbs: no such file or directory.

That was my mistake, sorry.

Like Shmuel said, try changing the line:

  local f=io.open(vb)


To this:

local f=io.open(vb,"w")


>  I was actually wondering about this. Is the file supposed to be written to
>  the hard drive somewhere?

Yes.

 - Jeff