Reputation: 141
I've downloaded spring-tool-suite-3.6.1.RELEASE-e4.4-win32-x86_64.zip and getting the following error while trying to unzip and install:
Error 0x80010135: Path too long
POM.properties
Type PROPERTIES File
Date Modified 6/11/2014 12:47PM
Size 146 bytes.
What may be the reason?
Upvotes: 14
Views: 39130
Reputation: 293
Step 1: Download STS zip file from spring official website
Step 2: After downloading Spring Tool Suite zip file then extract that then Open STS directory file click on STS icon below like this.
Step 3: Run that file then Select a directory as a workspace and browse your directory.
Here is complete installations of STS on Windows operating system.
Source : http://commandstech.com/how-to-install-springtoolsuitests-with-scala-on-windows-7-8-10/
Upvotes: 0
Reputation: 81
This happens because the file name & path are too long. Rename them to something smaller and simpler.
Here is the link that I found helpful
Upvotes: 0
Reputation: 401
This happens because of the zip file name being too long.You can rename the downloaded zip file to something like STS.zip (Give a short name) and then try to extract it.The error should now disappear.
Upvotes: 2
Reputation: 3841
Try with any alternative for zip such as 7Zip or WinRAR. 7Zip worked for me
Upvotes: 7
Reputation: 584
When you extract, it will try to extract in a folder named "spring-tool-suite-3.6.1.RELEASE-e4.4-win32-x86_64" which is too long for a folder name. Simple rule of thumb -- install to C:\ and rename the above to STS361_x8664. Be very frugal with folder names.
Upvotes: 0
Reputation: 56724
Possible solutions:
spring-tool-suite-3.6.1.RELEASE-e4.4-win32-x86_64.zip
to springts.zip
spring-tool-suite-3.6.1.RELEASE-e4.4-win32-x86_64.zip
to C:/
or in another location that is not very deep.Upvotes: 30