Exemplo n.º 1
0
 /// <summary>
 /// Loading file system
 /// </summary>
 /// <param name="pFilePath">File path</param>
 /// <param name="pErrorIfFileDoesntExist">Flag to throw an error if file doesn't exist</param>
 public void LoadFileSystem(string pFilePath, bool pErrorIfFileDoesntExist)
 {
     pFilePath = ApplicationToolkit.VerifyFilePath(pFilePath);
     if (TheApplication.CheckIfFileExists(pFilePath, pErrorIfFileDoesntExist))
     {
         this.InitialiseFolderIconChanger();
         this.Log = null;
         this.FolderIconChanger.LoadFileSystem(pFilePath);
     }
 }