Feature: Add Show in File Explorer context menu option to project list #310
+13
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This PR addresses issue #291 by adding a context menu option to open the project folder directly in the native OS file explorer. This improves navigation usability by allowing users to quickly locate their project files on disk without manually searching through directories.
Fixes : #291
Changes
1)Renderer: Added a "Show in File Explorer" item to the ProjectListEntryMenu component.
2)Main Process: Implemented the IPC handler in ProjectPage.js to trigger the existing shell.showItemInFolder functionality via the Messages.SHOW_ITEM_IN_FOLDER channel.
Screenshots:

This is Show in File Explorer option in Menu Options:
Finally directing the exisitng project in the System :

Verification
Added a new project/folder in StatWrap.
Clicked the ... menu on the project card.
Selected "Show in File Explorer".
Confirmed that the Finder/Explorer window opened to the correct project directory.