mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-12 10:19:20 +08:00
0314b570cd
* Architecture and (#7267) * Added debugging steps for PT Run * Updated architecture markdown for launcher * updated project architecture markdown for launcher * Added telemetry docs for launcher * Added the basic folder structure and files * Added a basic overview of all common functionalities of the plugins * Added information about the functioning of the calculator plugin * update score section of overview * added information about the uri plugin * added info about the indexer plugin * Added the documentation for the indexer plugin * Added information about the program plugin * Added info about the shell plugin * updated some plugin info and added information about the ww plugin * documenting the folder plugin * updated window walker docs * dev docs for the folder plugin * added images to each of the plugins * Added link to pt run documents * fix typos and some minor corrections * Add table of contents for pt run dev docs * Fix image path and project link for Wox.plugin Co-authored-by: Divyansh Srivastava <somm14divi@gmail.com>
1.9 KiB
1.9 KiB
Folder Plugin
The Folder plugin is used to navigate the directory structure and display the sub-folders and files within a folder.
FolderHelper.cs
- The
FolderHelper
class leverages theDriveInformation
andfolderLinks
to get the folder results for a user query. - The
DriveInformation
class gets the list of all drives on the system. - The
FolderLink
object corresponds to a user created link for frequently accessed projects. This was inherited from Wox but is presently not functional as we don't have the UI setup in settings to get this user input. Each folderLink object has anickname
, which is the name of the folder and this can be used to directly access that folder instead of entering the entire path.
IFolderProcessor.cs
The IFolderProcessor
utilizes the FolderHelper
class to extract the folders and return the results.
There are two types of Folder Processors, based on the type of information they are processing -
UserFolderProcessor
- This Processor is currently not used in PT Run but it is used to process the user created folder links.InternalDirectoryProcessor
- This processor is used to retrieve the files and folders located within the current drive or shared folder.
Score
The first result is of score 500 and the following results are scored 10.