From 50bc9f42d5658818347b50f452445f5bcdb7c75d Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 30 Mar 2025 15:20:53 -0400 Subject: Fix some relative path stuff --- src/stdlib/paths.c | 7 +++++++ src/stdlib/paths.h | 1 + 2 files changed, 8 insertions(+) (limited to 'src/stdlib') diff --git a/src/stdlib/paths.c b/src/stdlib/paths.c index 7f881c00..c7b560b9 100644 --- a/src/stdlib/paths.c +++ b/src/stdlib/paths.c @@ -710,6 +710,13 @@ public Array_t Path$glob(Path_t path) return glob_files; } +public Path_t Path$current_dir(void) +{ + char cwd[PATH_MAX]; + getcwd(cwd, sizeof(cwd)); + return Path$from_str(cwd); +} + public PUREFUNC uint64_t Path$hash(const void *obj, const TypeInfo_t *type) { (void)type; diff --git a/src/stdlib/paths.h b/src/stdlib/paths.h index 8bdbb2f3..02afc494 100644 --- a/src/stdlib/paths.h +++ b/src/stdlib/paths.h @@ -53,6 +53,7 @@ Text_t Path$base_name(Path_t path); Text_t Path$extension(Path_t path, bool full); Path_t Path$with_component(Path_t path, Text_t component); Path_t Path$with_extension(Path_t path, Text_t extension, bool replace); +Path_t Path$current_dir(void); Closure_t Path$by_line(Path_t path); Array_t Path$glob(Path_t path); -- cgit v1.2.3