While extracting adt-bundle-windows-x86_64-20140702 this error from windows 8

19,830

Solution 1

To further simplify the answer to this: the reason that you want to extract it to C: is that if you extract it to somewhere else (like you desktop) you will be adding characters to the file name. If you extract it as it is to the desktop, it will add "C:/users/username/desktop/adt-bundle-windows-x86_64-20140702" to the paths of all of the files and put you at risk for exceeding the max path name size. If you do it straight to C: (or any drive) and give it a short name like android, you will only add C:/android to the path.

Solution 2

Had this same issue and no matter how I extracted it, tried to rename stuff, etc. I kept getting the error. I thought opening the archive (in WinRAR) and dragging out the subfolders inside the adt-bundle.... folder would reduce the character count but I kept getting the error. On a whim, I tried just right-clicking the archive, choosing Extract files... and selecting the C: drive (essentially what I was already trying to do by dragging the folder) and.... it worked!! Looks like whatever WinRAR does when you drag files to extract is different than using the Extract files... option.

Just wanted to put this here in case others run into the same issue.

Solution 3

You can use 7-Zip to extract the file instead of the built-in Windows utility. 7-Zip will allow you to extract the file to anywhere on your machine.

This is a known problem on Windows 7 and Windows 8. See Issue 72539: eclipse adt bundle windows 7 64 bit will not unzip on the Android Issue Tracker.

Solution 4

This is a problem with WinRAR. There are two solutions:

  1. Right click on archive - Open with - Windows Explorer - drag&drop files to any folder.
  2. Open archive with WinRAR - Rename folder from adt-bundle-<os_platform> to adt-bundle - drag&drop files to any folder.
Share:
19,830
Admin
Author by

Admin

Updated on June 26, 2022

Comments

  • Admin
    Admin almost 2 years

    **While extracting adt-bundle-windows-x86_64-20140702 from windows 8 this error occurred

    (!   D:\Bela\Work\adt-bundle-windows-x86_64-20140702.zip: Cannot create folder adt-bundle-windows-x86_64-20140702\sdk\tools\lib\monitor-x86\features\com.android.ide.eclipse.hierarchyviewer.feature_23.0.2.1259578\META-INF\maven\adt.group\com.android.ide.eclipse.hierarchyviewer.feature
        The filename or extension is too long.
    !   D:\Bela\Work\adt-bundle-windows-x86_64-20140702.zip: Cannot create adt-bundle-windows-x86_64-20140702\sdk\tools\lib\monitor-x86\features\com.android.ide.eclipse.hierarchyviewer.feature_23.0.2.1259578\META-INF\maven\adt.group\com.android.ide.eclipse.hierarchyviewer.feature\pom.xml
        Total path and file name length must not exceed 260 characters
        The system cannot find the path specified.
    !   D:\Bela\Work\adt-bundle-windows-x86_64-20140702.zip: Cannot create adt-bundle-windows-x86_64-20140702\sdk\tools\lib\monitor-x86\features\com.android.ide.eclipse.hierarchyviewer.feature_23.0.2.1259578\META-INF\maven\adt.group\com.android.ide.eclipse.hierarchyviewer.feature\pom.properties
        Total path and file name length must not exceed 260 characters
        The system cannot find the path specified.)
    

    How can I fix this?