Did you by chance leave the "master_" at the beginning of the folder name after removing it from the archive? I've done that before with libraries with similar results.
Thanx for the reply. I don't know what you exactly mean,
But i have donwload a Adafruit Motor Shield V2 Master file, and unzipped it and installed it. However deleting this does not help. Tried to compile the master file and the normal Adafruit Motorshield file, both don't work.
Extract the archive and copy Adafruit_Motor_Shield_V2_Library to your "library" folder, after removing "-master" off the end of the folder that's in that archive. Close and reload the arduino IDE and see if it compiles. There was an old and new library and that may be the problem.
Not sure why. I tried it and the first install, I got the same error you got. Then looked deeper into it, got the library that I just linked to, copied like I mentioned to you, and it then compiled fine.
Maybe someone else can jump in with ideas, or post a question at the Adafruit discussion forum.
If you still haven't found a way to make the library work, there "is" a "hack" you could do if you can find no other way, but it takes a little work. Remove all the files from the library and put them into your application folder so that they load with the project (will load in separate tabs), then reference the header files with quotation marks instead of like with #include <... .h>. You'll also likely need to put the files from the "utility" folder into the app folder as well and reference them in the same way. You may also need to go into some of those files and change the way they reference the other files in the same way to - replace #include <... .h> with #include "... .h"