#include <xxxxx.h> Error

I have downloaded a program from internet called "ledcube.pde", containing code for the arduino board.
The code includes a program line where I get compilation error. The line is: #include <LedCube.h>
This file, "LedCube.h" is placed in the same folder as "ledcube.pde". Still I get a compilation error stating:

"Users/Kenneth2/Documents/Arduino/ledcube/ledcube.pde:7:21: fatal error: LedCube.h: No such file or directory
#include <LedCube.h>"

What am I doing wrong?
I am grateful for any help here.
Best regards,
Kenneth Lundkvist
Sweden

If it's in the same folder, I think you use this syntax instead:

#include "LedCube.h"

Use #include "LedCube.h" instead. This variant is for searching in current folder.

Thank you, CrossRoads and Budvar10 for your advice. Will try it out!
Kenneth