using SteamWare; using System; using System.Web; namespace MagData { public class utils { /// /// /// /// /// public static string getPath(string filePath) { string answ = ""; try { answ = HttpContext.Current.Server.MapPath(filePath); } catch (Exception exc) { logger.lg.scriviLog($"Eccezione in decodifica path in persorso relativo all'app:{Environment.NewLine}{exc}", tipoLog.EXCEPTION); } return answ; } } }