From 6b30277c664db5bc791fd105e58004c2ef81df61 Mon Sep 17 00:00:00 2001 From: cmurialdo Date: Tue, 1 Nov 2022 13:56:01 -0300 Subject: [PATCH] Implement ApplicationStartupPath property of Directory datatype. --- dotnet/src/dotnetframework/GxClasses/Domain/GXFileIO.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/dotnet/src/dotnetframework/GxClasses/Domain/GXFileIO.cs b/dotnet/src/dotnetframework/GxClasses/Domain/GXFileIO.cs index 5788c1d3e..e6358f1be 100644 --- a/dotnet/src/dotnetframework/GxClasses/Domain/GXFileIO.cs +++ b/dotnet/src/dotnetframework/GxClasses/Domain/GXFileIO.cs @@ -1630,7 +1630,14 @@ public static string ApplicationDataPath return string.Empty; } } - public static string ExternalFilesPath + public static string ApplicationStartupPath + { + get + { + return FileUtil.GetStartupDirectory(); + } + } + public static string ExternalFilesPath { get { return ApplicationDataPath; } }