using System.IO; namespace API.Extensions; public static class PathExtensions { public static string GetFullPathWithoutExtension(this string filepath) { if (string.IsNullOrEmpty(filepath)) return filepath; var extension = Path.GetExtension(filepath); return Path.GetFullPath(filepath.Replace(extension, string.Empty)); } }