1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
local uv = require "nvim-lsp-installer.core.async.uv"
local log = require "nvim-lsp-installer.log"
local a = require "nvim-lsp-installer.core.async"
local M = {}
---@async
---@param path string
---@param contents string
function M.append_file(path, contents)
local fd = uv.fs_open(path, "a", 438)
uv.fs_write(fd, contents, -1)
uv.fs_close(fd)
end
---@async
---@param path string
function M.file_exists(path)
local ok, fd = pcall(uv.fs_open, path, "r", 438)
if not ok then
return false
end
local fstat = uv.fs_fstat(fd)
uv.fs_close(fd)
return fstat.type == "file"
end
---@async
---@param path string
function M.dir_exists(path)
local ok, fd = pcall(uv.fs_open, path, "r", 438)
if not ok then
return false
end
local fstat = uv.fs_fstat(fd)
uv.fs_close(fd)
return fstat.type == "directory"
end
---@async
---@param path string
function M.rmrf(path)
log.debug("fs: rmrf", path)
if vim.in_fast_event() then
a.scheduler()
end
if vim.fn.delete(path, "rf") ~= 0 then
log.debug "fs: rmrf failed"
error(("rmrf: Could not remove directory %q."):format(path))
end
end
---@async
---@param path string
function M.mkdir(path)
log.debug("fs: mkdir", path)
uv.fs_mkdir(path, 493) -- 493(10) == 755(8)
end
---@async
---@param path string
---@param new_path string
function M.rename(path, new_path)
log.debug("fs: rename", path, new_path)
uv.fs_rename(path, new_path)
end
return M
|