Exemplo n.º 1
0
 private void NavigatetoLocalPath(string path)
 {
     try
     {
         var items = _fsHelper.GetFolderContent(path);
         PopulateFilesList(localFilesList, items);
         CurrentLocalPath = path;
     }
     catch (Exception exception)
     {
         ShowErrorAlert(exception.Message);
     }
 }