We need to ensure the save dir exists. But it only gets created in calls to love.filesystem.
PNWQDRZCBRX4WCAOTNVWXK46LVENZLTMOTUZASBYGVXI34QTGTEAC
UKWO6Q3GBEPCVPLTTLCIDKU2TENJWZ2GIAJCVJF7M2U3FUZNAIZAC
MIAW5I2H3QNIHWBE2FI3I54FS5B4MRF53TB2EICHYGSEXIKV7GYAC
5UCLBIFY4LTDA2EGR2SNK4Z7YPJ5IC3CSBYZ6ZYQQ7KYCRLSIZ4QC
local absolute_path = love.filesystem.getSaveDirectory()..'/'..filename -- ensure directory exists love.filesystem.write(absolute_path, '')
local absolute_path = love.filesystem.getSaveDirectory()..'/'..filename
-- ensure directory exists
love.filesystem.write(absolute_path, '')
local file = io.open(love.filesystem.getSaveDirectory()..'/'..filename, "wb")
local file = io.open(absolute_path, "wb")