Problem while including DHT Libraries

My project is about to push the DHT sensor data to MySql. I have included DHT library in Arduino/libraries/DHT. When i compile the program i m getting the following error. I have attached the snapshot of it.

#include <DHT.h>
#include <Ethernet.h>
#include <SPI.h>

byte mac[] = { 0x00, 0xAA, 0xBB, 0xCC, 0xDE, 0x01 }; // RESERVED MAC ADDRESS

I have attached the snapshot of it.

Why would you attach a picture of some text?

Is there some part of the "file not found" message that is beyond your comprehension?

Apparently, you have not downloaded the DHT library, or you did not install it correctly.

That picture shows, what type of error i am getting while i compile the code.I have downloaded the DHT library from this link http://www.instructables.com/id/PART-1-Send-Arduino-data-to-the-Web-PHP-MySQL-D3js/?ALLSTEPS and i have included those library files in Arduino/Libraries/DHT.

and i have included those library files in Arduino/Libraries/DHT.

The folder name is libraries, not Libraries.

I am sorry i have mistyped the "libraries". Its D:\AE\arduino-1.6.5-r2\libraries\DHT

Its D:\AE\arduino-1.6.5-r2\libraries\DHT

That is NOT where user downloaded libraries go.

In the folder where you store your sketches, you should have a libraries folder. THAT is where user-downloaded libraries go.

Thank You. Its working now.