diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-11-15 13:44:30 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-11-15 13:44:30 -0500 |
| commit | 4e9920482018b652401ec0629ade381c70ae4d4b (patch) | |
| tree | 8e27ce28c3ca4e75864b72f11574c3652cc1b93a /system/apis/flib.lua | |
| parent | bcc38bf864e03522a37ec7a1dc1db953dbe7d473 (diff) | |
| download | bits-UI-4e9920482018b652401ec0629ade381c70ae4d4b.tar.gz bits-UI-4e9920482018b652401ec0629ade381c70ae4d4b.tar.bz2 bits-UI-4e9920482018b652401ec0629ade381c70ae4d4b.zip | |
Removed old system files
Diffstat (limited to 'system/apis/flib.lua')
| -rw-r--r-- | system/apis/flib.lua | 124 |
1 files changed, 0 insertions, 124 deletions
diff --git a/system/apis/flib.lua b/system/apis/flib.lua deleted file mode 100644 index c3b7150..0000000 --- a/system/apis/flib.lua +++ /dev/null @@ -1,124 +0,0 @@ ---[[ - fLib by NDFJay -]]-- -function exists(path) - local file = assert(io.open(path, "r")) - if file ~= nil then - file:close() - return true - end - - return false -end - -function getTable(path) - if exists(path) then - local file = io.open(path, "r") - local lines = {} - local i = 1 - local line = file:read("*l") - while line ~= nil do - lines[i] = line - line = file:read("*l") - i = i + 1 - end - file:close() - return lines - end - return {} -end - -function getLine(path, n) - if exists(path) then - local lines = getTable(path) - return lines[n] - end - return "" -end - -function getText(path) - if exists(path) then - local file = assert(io.open(path, "r")) - return file:read("*a") - end - return "" -end - -function fappend(path, text) - local file = assert(io.open(path, "a")) - file:write(text.."\n") - file:close() -end - -function fwrite(path, text) - local file = assert(io.open(path, "w")) - file:write(text) - file:close() -end - -function fwriteAtStart(path, text) - local _text = getText(path) - fwrite(path, text.."\n".._text) -end - -function fwriteFromTable(path, t) - local text = "" - for _, line in pairs(t) do - text = text..line.."\n" - end - fwrite(path, text) -end - -function fappendFromTable(path, t) - local text = "" - for _, line in pairs(t) do - text = text..line.."\n" - end - fappend(path, text) -end - -function fwriteAtStartFromTable(path, t) - local text = "" - for _, line in pairs(t) do - text = text..line.."\n" - end - fwriteAtStart(path, text) -end - -function replaceLine(path, n, text) - local lines = getTable(path) - lines[n] = text - fwriteFromTable(path, lines) -end - -function getName(path) - if exists(path) then - local lastSlashPos = 1 - for i = 1, path:len() do - if path:sub(i, i) == "/" then - lastSlashPos = i - end - end - - return path:sub(lastSlashPos + 1) - end - return "" -end - -function getPath(path) - if exists(path) then - local lastSlashPos = 1 - for i = 1, path:len() do - if path:sub(i, i) == "/" then - lastSlashPos = i - end - end - - return path:sub(1, lastSlashPos) - end - return "" -end - -function fremove(path) - os.remove(path) -end
\ No newline at end of file |
