-
-
Notifications
You must be signed in to change notification settings - Fork 392
Improve explorer path parse when path ends with backslash #3238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@check-spelling-bot Report🔴 Please reviewSee the 📂 files view, the 📜action log, or 📝 job summary for details.
See ❌ Event descriptions for more information. If the flagged items are 🤯 false positivesIf items relate to a ...
|
Be a legend 🏆 by adding a before and after screenshot of the changes you made, especially if they are around UI/UX. |
📝 WalkthroughWalkthroughThis pull request refactors how file explorer paths are handled in the Changes
Sequence Diagram(s)sequenceDiagram
participant Caller as Application
participant Helper as FileExplorerHelper
Caller->>Helper: GetActiveExplorerPath(locationUrl)
Helper->>Helper: Extract local path from locationUrl
Helper->>Helper: Call GetDirectoryPath(localPath)
Helper-->>Helper: Return formatted path (with trailing backslash)
Helper-->>Caller: Return directory path
Suggested labels
Suggested reviewers
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (2)
Flow.Launcher.Infrastructure/FileExplorerHelper.cs (2)
21-24
: Enhance the XML documentation.The documentation could be more specific about the backslash handling behavior.
/// <summary> -/// Get directory path from a file path +/// Ensures the path ends with a backslash, adding one if necessary. +/// This prevents double backslashes when the path already ends with one. /// </summary>
24-32
: Add null check and path validation.The method assumes the input path is not null and valid. Consider adding validation to handle edge cases.
private static string GetDirectoryPath(string path) { + if (string.IsNullOrEmpty(path)) + return path; + if (!path.EndsWith("\\")) { return path + "\\"; } return path; }
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
Flow.Launcher.Infrastructure/FileExplorerHelper.cs
(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)
- GitHub Check: gitStream.cm
🔇 Additional comments (1)
Flow.Launcher.Infrastructure/FileExplorerHelper.cs (1)
18-18
: LGTM! Good refactoring of path handling logic.The change improves code organization by delegating directory path formatting to a dedicated method while maintaining proper null checks and URL conversion.
🥷 Code experts: no user but you matched threshold 10 Jack251970 has most 👩💻 activity in the files. See details
Activity based on git-commit:
Knowledge based on git-blame: To learn more about /:\ gitStream - Visit our Docs |
Improve explorer path parse when path ends with backslash
If the path from the active explorer is already end with backslash, do not add backslash to it.
Test
If the active explorer path is
C:\
, adding\
to it will cause issues.Original:

New:
