From 0990537b7ec4f8e5cff0fb659f71d6f32972fdd0 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Thu, 22 Feb 2024 06:52:01 -0500 Subject: [PATCH] Path.Combine --- BeefLibs/corlib/src/IO/Path.bf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/BeefLibs/corlib/src/IO/Path.bf b/BeefLibs/corlib/src/IO/Path.bf index 62b3bba8..2326e28f 100644 --- a/BeefLibs/corlib/src/IO/Path.bf +++ b/BeefLibs/corlib/src/IO/Path.bf @@ -382,6 +382,11 @@ namespace System.IO } } + public static void Combine(String target, params StringView[] components) + { + InternalCombine(target, params components); + } + public static void GetActualPathName(StringView inPath, String outPath) { Platform.GetStrHelper(outPath, scope (outPtr, outSize, outResult) =>