• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

navigating directories that have long names in DOS?

I want to access this folder

D:\Program Files\J2SDK\j2sdk1.4.2

I dont know what to type to get into the \j2sdk1.4.2 folder. Just putting quotes around the directory doesn't work.
 
There should be a command switch that shows the 8.3 equivalent but I don't remember what it is off hand.

Try dir /x. That works in the Command window of XP to display the 8.3 name.
 
What OS?

If in winxp - you don't need to do anything, just spell out the whole directory.
IE: cd \program files\j2sdk\j2sdk1.4.2

If in win9x - put quotes around the whole path.
IE: cd "\program files\j2sdk\j2sdj1.4.2"
 
Back
Top