Lua - Trying to write to a file

4.7k Views Asked by At

I'm using Rainmeter to pass air pressure values to a lua script which I then want to be written to a text file and store the last x number to be retrieved later on to produce a histogram of the pressure changes over time.

To start with I am just trying to write a string to a file as a test but I am failing and feeling quite stupid in the process.

My script has an Update function where I'm passing and returning the pressure value from Rainmeter then another function called writetofile where I'm trying to open, write and then close a text file. It is this part I am having trouble with.

My script is as follows:

function Initialize()
end -- function Initialize

function Update()
    sMyPressure = SELF:GetOption('CurrentPressure')
    return sMyPressure
end -- function Update

function writetofile()
    file = io.open("pressures.txt", "w")
    file:write("Hello World")
    file:close()
end

EDIT

I tried removing the writetofile function and moving the contents to within the update function but this didn't work and the script stopped passing the sMyPressure back to the Rainmeter script and also didn't write to the text file.

eg:

function Initialize()
end -- function Initialize

function Update()
    sMyPressure = SELF:GetOption('CurrentPressure')
    return sMyPressure
    file = io.open("pressures.txt", "w")
    file:write("Hello World")
    file:close()
end -- function Update

What am I doing wrong? the file pressures.txt exists and is writable and if I delete it, it isn't created.

Can anyone help please.

Thanks.

EDIT

Got it working.

1) I can't call a function from within Update

2) As Mike said, I needed a full path to the file

3) This path requires double backspaces \

Working code if anyone is interested or has the same issue:

function Initialize()
end -- function Initialize

function Update()
    sMyPressure = SELF:GetOption('CurrentPressure')
    writetofile(sMyPressure)
    return sMyPressure
end -- function Update

function writetofile(CurrentPressure)
    file = io.open("C:\\Users\\Hedley\\Documents\\Rainmeter\\Skins\\SimplyNova\\Wunderground\\pressures.txt", "a")
    -- file:write("hello", "\n")
    file:write(CurrentPressure, "\n")
    file:close()
end
0

There are 0 best solutions below