devxlogo

Retrieve the Full and Short Pathnames with a Batch File

This code comes in handy when you’ve run out of storage in the %PATH% environment variable. Save the following code as Pathname.bat in C:winnt:

@echo offif not exist %1 echo %1 - no such file or directory exists&goto :EOFecho.echo    Full PathName  : %1echo.echo    Short PathName : %~s1echo.echo.

Next, execute the file test.bat in C:Program FilesMicrosoft Visual Studio. The result will be the full PathName:

"C:Program FilesMicrosoft Visual Studio"

And the Short PathName:

C:PROGRA~1MICROS~3

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  How Seasoned Architects Evaluate New Tech

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.