Skip to content

Instantly share code, notes, and snippets.

@BananaAcid
Created August 28, 2026 19:12
Show Gist options
  • Select an option

  • Save BananaAcid/109fc6db161f7327d850a0c82dea1232 to your computer and use it in GitHub Desktop.

Select an option

Save BananaAcid/109fc6db161f7327d850a0c82dea1232 to your computer and use it in GitHub Desktop.
PowerShell: Join-NormalizedPath
# Works like Join-Path, but returns the path without any \..\ and \.\ parts
function Join-NormalizedPath {
$path = Join-Path @args
[System.IO.Path]::GetFullPath($path)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment