private String LoadAppName() { String result = String.Empty; int index = this.rootPath.LastIndexOf("\\"); result = this.rootPath.Substring(index + 1, this.rootPath.Length - index - 1); return result; }