How to Improve File Dialogs' Performance
Environment
Product Version | Product | Author |
---|---|---|
2020.2.512 | File Dialogs for WinForms | Desislava Yordanova |
Description
All file dialogs are loading all directories and sub-directories of the predefined InitialDirectory and also all folders and their sub-folders that are visible on the MainNavigationTreeView on the left side. When a directory is loaded, the file dialogs are creating a DirectoryInfoWrapper object which subscribes for the Created, Changed, Renamed and Deleted events for this directory. This is the most time-consuming operation when loading the dialogs.
Solution
A possible solution is to create custom dialogs, which are not tracking the Created, Changed, Renamed and Deleted file and folder events. Thus, the performance can be improved with 30-50%.
You can also skip a directory from being loaded in the file dialogs by canceling the DirectoryRequesting event. Another hint to improve the loading time is to set the ShowNetworkLocations property to false. Its value indicates whether the dialog shows network computers in the navigation tree.
Additionally, when all directories are being traversed multiple exceptions like UnauthorizedAccessException, can occur. They are also consuming large amounts of time. You can track them by subscribing to the ExceptionRaised event of the dialog.