We now need to explicitly select the directory we want to read from.
O5TGYJZQ2NDBC53BP2NDEKKKCIBSJYEIQVJRK6CQFHBPHB6GGHWAC
ED4Z6ORCADLWJPSZNKQVUF63NBKLQVE7UFMBTQAQA5O47X4NLFIAC
KKMFQDR43ZWVCDRHQLWWX3FCWCFA3ZSXYOBRJNPHUQZR2XPKWULAC
local infile = App.open_for_reading(filename)
local infile = App.open_for_reading(App.save_dir..filename) if not infile then infile = App.open_for_reading(App.source_dir..filename) end
local infile = App.open_for_reading(App.save_dir..filename)
if not infile then
infile = App.open_for_reading(App.source_dir..filename)
end
-- the source editor supports only files in the save dir, not even subdirectories
-- the source editor supports only files in the save dir backed by the source dir
if not infile then infile = App.open_for_reading(App.source_dir..State.filename) end
infile = App.open_for_reading(App.source_dir..State.filename)