mirror of
https://github.com/soarqin/DSP_Mods.git
synced 2026-08-05 13:20:18 +08:00
10 lines
275 B
C#
10 lines
275 B
C#
using System.IO;
|
|
using System.Reflection;
|
|
|
|
namespace UXAssist.Common.Utils;
|
|
|
|
public static class PathUtil
|
|
{
|
|
public static string PluginFolder(Assembly assembly = null) => Path.GetDirectoryName((assembly == null ? Assembly.GetCallingAssembly() : assembly).Location);
|
|
}
|