Sambatyon
Sambatyon

Reputation: 3374

Windows short path format to long path format

Is there a windows API call or some way to translate the paths of the form

C:\Progra~1\Users\SomeU~2\

to

C:\Program Files\Users\SomeUser\

Upvotes: 5

Views: 1972

Answers (1)

David Heffernan
David Heffernan

Reputation: 613013

You are looking for GetLongPathName().

Upvotes: 9

Related Questions