-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eb25afe
commit 30c6f30
Showing
2 changed files
with
29 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// | ||
// URLExtensions.swift | ||
// Harbor | ||
// | ||
// Created by Venti on 15/06/2023. | ||
// | ||
|
||
import Foundation | ||
|
||
extension URL { | ||
var prettyFileUrl: String { | ||
if !self.isFileURL { | ||
return self.absoluteString | ||
} | ||
guard var prettyPath = self.path.removingPercentEncoding else { | ||
return self.path | ||
} | ||
|
||
if path.hasPrefix("/Users") { | ||
// Remove /Users/<username> and replace with ~ | ||
prettyPath = prettyPath.replacingOccurrences(of: #"/Users/[^/]+/"#, | ||
with: "~/", options: .regularExpression) | ||
} | ||
|
||
return prettyPath | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters