mirror of https://github.com/Hilbis/Hilbish
41 lines
598 B
Go
41 lines
598 B
Go
package fs
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/yuin/gopher-lua"
|
|
)
|
|
|
|
func Loader(L *lua.LState) int {
|
|
mod := L.SetFuncs(L.NewTable(), exports)
|
|
|
|
L.Push(mod)
|
|
return 1
|
|
}
|
|
|
|
|
|
func LuaErr(L *lua.LState, code int) {
|
|
// TODO: Error with a table, with path and error code
|
|
L.Error(lua.LNumber(code), 2)
|
|
}
|
|
|
|
var exports = map[string]lua.LGFunction{
|
|
"cd": cd,
|
|
}
|
|
|
|
func cd(L *lua.LState) int {
|
|
path := L.ToString(1)
|
|
|
|
err := os.Chdir(strings.TrimSpace(path))
|
|
if err != nil {
|
|
switch err.(*os.PathError).Err.Error() {
|
|
case "no such file or directory":
|
|
LuaErr(L, 1)
|
|
}
|
|
}
|
|
|
|
return 0
|
|
}
|
|
|