-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Summary of the new feature / enhancement
Summary
Start-ThreadJob should support -LiteralPath parameter (with -PSPath and -LP aliases) to match Start-Job's functionality and handle cross-platform file paths that may contain wildcard characters.
Problem
PowerShell is now cross-platform, and characters traditionally used as wildcards (*, ?, [, ]) may be present in filenames on non-Windows systems (e.g., Linux, macOS). Currently, Start-ThreadJob only has a -FilePath parameter, which may cause issues when:
- A legitimate filename contains wildcard characters on Unix-like systems
- Users need to ensure paths are interpreted literally without pattern matching
- Users want API consistency between
Start-JobandStart-ThreadJob
Current Behavior
Start-ThreadJob only supports:
Start-ThreadJob -FilePath "path/to/script.ps1"The -FilePath parameter rejects paths with wildcard characters (see GetScriptBlockFromFile method):
if (WildcardPattern.ContainsWildcardCharacters(filePath))
{
throw new ArgumentException("FilePath cannot contain wildcards.");
}Proposed technical implementation details (optional)
Proposed Solution
Add a -LiteralPath parameter to Start-ThreadJob with:
- Aliases:
-PSPath,-LP(matchingStart-Job) - Behavior: Interprets paths literally without wildcard evaluation
- Mutual exclusivity:
-FilePathand-LiteralPathshould be in different parameter sets
Example usage:
# For a file literally named "test[1].ps1" on Linux
Start-ThreadJob -LiteralPath "/home/user/scripts/test[1].ps1"
# With aliases
Start-ThreadJob -PSPath "/home/user/scripts/test[1].ps1"
Start-ThreadJob -LP "/home/user/scripts/test[1].ps1"Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request