We now need to explicitly select the directory we want to read from.
HYJFPTPXO2DI4QD4AFJS3HU2TPFDHREEHJOFACVNG76RBTSVFLDAC
D6DV2L5CX6YGDXHI3SQKYEOBNTKUOBB6M5OJTPSECRQJHRIAGSYAC
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)