| 229 | } |
| 230 | |
| 231 | int cliLuaIsFile(lua_State* L) { |
| 232 | std::error_code err; |
| 233 | lua_pushboolean(L, fs::is_regular_file(cliGetString(L, 1), err)); |
| 234 | return 1; |
| 235 | } |
| 236 | |
| 237 | int cliLuaMkdirs(lua_State* L) { |
| 238 | std::error_code err; |
nothing calls this directly
no test coverage detected