2021-02-18 15:53:32 +00:00
|
|
|
[CmdletBinding()]param(
|
2021-02-19 20:19:42 +00:00
|
|
|
[switch]$Expand,
|
2021-02-18 15:53:32 +00:00
|
|
|
[Parameter(ValueFromPipeline,ValueFromPipelineByPropertyName,Position=0)]
|
|
|
|
[Alias("FullName")]
|
|
|
|
[string[]]$Path
|
|
|
|
)
|
|
|
|
process {
|
2020-11-05 04:31:34 +00:00
|
|
|
|
2021-02-18 15:53:32 +00:00
|
|
|
function Get-FullPath {
|
|
|
|
param([string]$Path)
|
2021-01-29 23:26:39 +00:00
|
|
|
|
2021-02-18 15:53:32 +00:00
|
|
|
if([System.IO.Path]::IsPathRooted($Path)){
|
|
|
|
[System.IO.Path]::GetFullPath($Path)
|
|
|
|
}else{
|
|
|
|
[System.IO.Path]::GetFullPath((Join-Path $PWD $Path))
|
|
|
|
}
|
2020-12-02 04:31:42 +00:00
|
|
|
}
|
2021-01-29 23:26:39 +00:00
|
|
|
|
2021-02-18 15:53:32 +00:00
|
|
|
foreach( $local:p in $Path ) {
|
|
|
|
switch( $p[0] ) {
|
|
|
|
'@' { $p = Join-Path $MyPSScriptRoot $p.Substring(1) }
|
|
|
|
'~' {
|
|
|
|
if( $p -match '^~[^/]*' ) {
|
|
|
|
$local:m = $Matches[0]
|
2021-02-20 00:22:46 +00:00
|
|
|
$p = $p -replace "^$m",((Get-Item -Force $m).FullName)
|
2021-02-18 15:53:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-01-29 23:26:39 +00:00
|
|
|
|
2021-03-06 23:10:28 +00:00
|
|
|
$p = $p -replace '#C-','#C-#' -replace '\*','#C-A#' -replace '\?','#C-Q#'
|
2021-02-18 15:53:32 +00:00
|
|
|
if([System.IO.Path]::IsPathRooted($p)){
|
2021-02-19 20:19:42 +00:00
|
|
|
$p = [System.IO.Path]::GetFullPath($p)
|
2021-02-18 15:53:32 +00:00
|
|
|
}else{
|
2021-02-19 20:19:42 +00:00
|
|
|
$p = [System.IO.Path]::GetFullPath((Join-Path $PWD $p))
|
2021-02-18 15:53:32 +00:00
|
|
|
}
|
2021-03-06 23:10:28 +00:00
|
|
|
$p = $p -replace '#C-A#','*' -replace '#C-Q#','?' -replace '#C-#','#C-'
|
2021-02-19 20:19:42 +00:00
|
|
|
|
2021-03-23 05:06:49 +00:00
|
|
|
if( $p -match '\*|\?' -and $Expand ) {
|
|
|
|
$p = $p | Where-Object { Test-Path $_ } |
|
|
|
|
Get-Item -Force |
|
|
|
|
Select-Object -ExpandProperty FullName
|
2021-02-19 20:19:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$p
|
2021-02-18 15:53:32 +00:00
|
|
|
}
|
2021-01-29 23:26:39 +00:00
|
|
|
}
|
|
|
|
# try {
|
|
|
|
# get-item $Path -Force -ErrorAction Stop |
|
|
|
|
# Select-Object -ExpandProperty FullName
|
|
|
|
# } catch {
|
|
|
|
# $_.targetObject
|
|
|
|
# }
|