Difference between revisions of "MiniFS"
m |
(→Moonscript) |
||
(3 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
MiniFS is a small but powerful module for easy filesystem access. It uses LuaFileSystem, the Lua standard I/O module and the standard OS module to form a convenient API. | MiniFS is a small but powerful module for easy filesystem access. It uses LuaFileSystem, the Lua standard I/O module and the standard OS module to form a convenient API. | ||
− | You can grab it from [http://gitlab.com/zatherz/minifs GitLab]. Documentation of the module can be seen [https://zatherz.gitlab.io/minifs here]. | + | MiniFS is written in MoonScript, a language that compiles to Lua. There is a pre-compiled version in the repository if you don't want to embed Moonscript in your Lua programs. |
+ | |||
+ | You can grab it from [http://gitlab.com/zatherz/minifs GitLab]. Documentation of the module can be seen [https://zatherz.gitlab.io/minifs here]. You can also install it through [https://luarocks.org/modules/zatherz/minifs LuaRocks]. | ||
+ | |||
+ | == Examples == | ||
+ | === Moonscript === | ||
+ | <source lang="lua"> | ||
+ | fs = require("minifs") | ||
+ | print(fs.system(true)) -- print the operating system | ||
+ | fs.mkdir("test") | ||
+ | fs.write("test/test.txt", "Hello") -- write to a file in one line without file handles | ||
+ | fs.mkdir("test/test2") | ||
+ | fs.move("test/test.txt", "test/test2/test.txt") | ||
+ | fs.usetmp((path) -> | ||
+ | -- path is a temporary file that is removed when the function ends | ||
+ | print(path) | ||
+ | ) | ||
+ | fs.rmdir("test", true) -- recursive remove | ||
+ | </source> | ||
+ | |||
+ | === Lua === | ||
+ | <source lang="lua"> | ||
+ | fs = require("minifs") | ||
+ | print(fs.system(true)) -- print the operating system | ||
+ | fs.mkdir("test") | ||
+ | fs.write("test/test.txt", "Hello") -- write to a file in one line without file handles | ||
+ | fs.mkdir("test/test2") | ||
+ | fs.move("test/test.txt", "test/test2/test.txt") | ||
+ | fs.usetmp(function(path) | ||
+ | -- path is a temporary file that is removed when the function ends | ||
+ | print(path) | ||
+ | end) | ||
+ | fs.rmdir("test", true) -- recursive remove | ||
+ | </source> | ||
[[Category:Libraries]] | [[Category:Libraries]] |
Latest revision as of 18:17, 21 May 2016
MiniFS is a small but powerful module for easy filesystem access. It uses LuaFileSystem, the Lua standard I/O module and the standard OS module to form a convenient API.
MiniFS is written in MoonScript, a language that compiles to Lua. There is a pre-compiled version in the repository if you don't want to embed Moonscript in your Lua programs.
You can grab it from GitLab. Documentation of the module can be seen here. You can also install it through LuaRocks.
Examples
Moonscript
fs = require("minifs")
print(fs.system(true)) -- print the operating system
fs.mkdir("test")
fs.write("test/test.txt", "Hello") -- write to a file in one line without file handles
fs.mkdir("test/test2")
fs.move("test/test.txt", "test/test2/test.txt")
fs.usetmp((path) ->
-- path is a temporary file that is removed when the function ends
print(path)
)
fs.rmdir("test", true) -- recursive remove
Lua
fs = require("minifs")
print(fs.system(true)) -- print the operating system
fs.mkdir("test")
fs.write("test/test.txt", "Hello") -- write to a file in one line without file handles
fs.mkdir("test/test2")
fs.move("test/test.txt", "test/test2/test.txt")
fs.usetmp(function(path)
-- path is a temporary file that is removed when the function ends
print(path)
end)
fs.rmdir("test", true) -- recursive remove