/// <summary>
        /// Loads the folder's contents
        /// </summary>
        private void LoadFolder(FileSystemElement fse)
        {
            try
            {
                BrowserService.CancelLoading();

                var options = GetThumbnailFetchOptions();
                BrowserService.LoadFolder(fse, options);

                if (Path != fse.Path)
                {
                    return;
                }

                CurrentFolder = fse;
            }
            catch (Exception)
            {
                //await Windows.System.Launcher.LaunchUriAsync(new Uri(“ms-settings:privacy-broadfilesystemaccess”));
                //Show error that path was not found
            }
        }