| 223 | } |
| 224 | |
| 225 | int cliLuaIsDir(lua_State* L) { |
| 226 | std::error_code err; |
| 227 | lua_pushboolean(L, fs::is_directory(cliGetString(L, 1), err)); |
| 228 | return 1; |
| 229 | } |
| 230 | |
| 231 | int cliLuaIsFile(lua_State* L) { |
| 232 | std::error_code err; |
nothing calls this directly
no test coverage detected