Converting File Paths to 8.3 (Part 1)
Why Short Path Names Still Matter Many years ago, file and folder names had a maximum of 8 characters, and these short path names still...
- Written By: ps1
- Last Updated: April 21, 2025
- 2 minutes read
Why Short Path Names Still Matter Many years ago, file and folder names had a maximum of 8 characters, and these short path names still...
Many years ago, file and folder names had a maximum of 8 characters, and these short path names still exist. They can even still be useful: short path names never contain spaces and other special characters and therefore never need to be quoted or escaped. Short paths can also be helpful when paths get very long.
Yet how can you find out the short path name for a default long path name? One way is to use an old COM component that was used by the Windows scripting host:
# take any path # in this example, I am taking the path where Powershell 7 is installed # this requires that PowerShell 7 in fact is installed. # You can use any other path as well $path = (Get-Command -Name pwsh).Source "Long path: $path" # convert it to 8.3 short name $shortPath = (New-Object -ComObject Scripting.FileSystemObject).GetFile($path).ShortPath "Short path: $shortPath"
The result looks similar to this:
Long path: C:\Program Files\PowerShell\7\pwsh.exe Short path: C:\PROGRA~1\POWERS~1\7\pwsh.exe
Contact our sales team to get a personalized demo of our database management software for SQL Server!