| 217 | } |
| 218 | |
| 219 | int cliLuaExists(lua_State* L) { |
| 220 | std::error_code err; |
| 221 | lua_pushboolean(L, fs::exists(cliGetString(L, 1), err)); |
| 222 | return 1; |
| 223 | } |
| 224 | |
| 225 | int cliLuaIsDir(lua_State* L) { |
| 226 | std::error_code err; |
nothing calls this directly
no test coverage detected