namespace CommanderApp.Services; public interface IPathHelper { string GetUserHomePath(); string GetRootPath(); string CombinePaths(params string[] paths); string GetFileName(string path); string GetDirectoryName(string path); }