Creating a Directory Viewer GUI
Learn how we can use the QFileSystemModel module to create a directory viewer.
We'll cover the following...
The directory viewer GUI
Every operating system must have a way for users to access the data and files stored there. These files are kept in a hierarchical file system, which groups drives, directories, and files so that you can only view the ones you're interested in. Whether you use a command-line interface or a graphical user interface, there must be a way to add, delete, and rename files and directories. However, finding the files or directories you need within your current application may be more convenient than ...