Since our most recent upgrade to 2024.1.8 the following code no longer returns any information. No syntax errors or anything. It just doesn’t return a path anymore. Does anyone know if something has changed with the usage of this?
CallService<Ice.Contracts.ServerPathSvcContract>(serverPathSvc =>
{
List<Ice.Lib.ServerPath.Types.PathInfo> pathInfo = new List<Ice.Lib.ServerPath.Types.PathInfo>();
pathInfo = serverPathSvc.GetPaths(Epicor.ServiceModel.Utilities.SpecialFolder.CompanyData, "", false);
if(pathInfo.Count > 0)
{
string path = $"{pathInfo.First().FullName};
}
});