Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local advFs = {}
- --Ultime Studios AdvFs Library
- --Includes: Copy(v1), Delete(v1)
- function advFs.Copy(source, target)
- shell.run("cp", source, target)
- end
- function advFs.Delete(path)
- shell.run("rm", path)
- end
- return advFs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement