public static void Main()
string ckfinderRootEncoded = @"XFwxOTIuMTY4LjIxMS4xMzFcaXRzcWFfYWlydGVzdF9vcmc=";
string ckfinderRootDecoded = System.Text.Encoding.UTF8.GetString(Convert.FromBase64String(ckfinderRootEncoded));
Console.WriteLine("root decoded: " + ckfinderRootDecoded);
string resourceRelDir = @"\ckfinder\sandbox\ib_washington_science_test\item21238translationen-us\resources";
string path1 = Path.Combine(ckfinderRootDecoded, resourceRelDir);
Console.WriteLine("path version 1: " + path1);
string resourceRelDir_notRooted = @"ckfinder\sandbox\ib_washington_science_test\item21238translationen-us\resources";
string path2 = Path.Combine(ckfinderRootDecoded, resourceRelDir_notRooted);
Console.WriteLine("path version 2: " + path2);