mirror of https://github.com/Hilbis/Hilbish
docs: [ci] generate new docs
parent
c8c30e9861
commit
f7806f5479
|
@ -11,6 +11,9 @@ filepath.Dir
|
|||
glob(pattern) > Glob all files and directories that match the pattern.
|
||||
For the rules, see Go's filepath.Glob
|
||||
|
||||
join(paths...) > Takes paths and joins them together with the OS's
|
||||
directory separator (forward or backward slash).
|
||||
|
||||
mkdir(name, recursive) > Makes a directory called `name`. If `recursive` is true, it will create its parent directories.
|
||||
|
||||
readdir(dir) > Returns a table of files in `dir`
|
||||
|
|
|
@ -22,6 +22,10 @@ function fs.dir() end
|
|||
--- For the rules, see Go's filepath.Glob
|
||||
function fs.glob() end
|
||||
|
||||
--- Takes paths and joins them together with the OS's
|
||||
--- directory separator (forward or backward slash).
|
||||
function fs.join() end
|
||||
|
||||
--- Makes a directory called `name`. If `recursive` is true, it will create its parent directories.
|
||||
--- @param name string
|
||||
--- @param recursive boolean
|
||||
|
|
Loading…
Reference in New Issue