diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-09-09 01:48:37 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-09-09 01:48:37 -0400 |
| commit | 6752c60f32d0e154e54f30fd2b3e22904e56ea64 (patch) | |
| tree | 4fe3f3cf1f092ece6c07af66a91307b110fa28f7 /builtins/path.h | |
| parent | 11c560ebccfa3eabb939dafc4139be92edd26842 (diff) | |
More methods
Diffstat (limited to 'builtins/path.h')
| -rw-r--r-- | builtins/path.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/path.h b/builtins/path.h index 54632d42..9a37d92d 100644 --- a/builtins/path.h +++ b/builtins/path.h @@ -22,12 +22,12 @@ bool Path$is_directory(Path_t path, bool follow_symlinks); bool Path$is_pipe(Path_t path, bool follow_symlinks); bool Path$is_socket(Path_t path, bool follow_symlinks); bool Path$is_symlink(Path_t path); - void Path$write(Path_t path, Text_t text, int permissions); void Path$append(Path_t path, Text_t text, int permissions); Text_t Path$read(Path_t path); void Path$remove(Path_t path, bool ignore_missing); void Path$create_directory(Path_t path, int permissions); +Array_t Path$children(Path_t path, bool include_hidden); extern const TypeInfo Path$info; |
