Closed gamax92 closed 10 years ago
fs.isReadOnly doesn't return anything for anything that isn't in /rom
lua> fs.isReadOnly("rom") true lua> fs.isReadOnly("/") -- Expected false lua> fs.makeDir("tmpdir") true lua> fs.isReadOnly("tmpdir") -- Expected false lua> file = fs.open("tmpfile","w") file.write("stuff") file.close() lua> fs.isReadOnly("tmpfile") -- Expected false
fs.isReadOnly doesn't return anything for anything that isn't in /rom