error, the program cant find my file

so I'm trying to recreate this tutorial;

and I followed all the steps correctly (I think)
but for some reason I get this error message

C:\Users\Geertje\Documents\Arduino\arduino-libraries-CapacitiveSensor-a07209f\sketch_apr19b\sketch_apr19b.ino:1:30: fatal error: CapacitiveSensor.h: No such file or directory

#include <CapacitiveSensor.h>

^

compilation terminated.

exit status 1
Fout bij het compileren voor board Arduino/Genuino Uno

I am completely lost on how to make the program find this file since i've moved it all over my computer and it still cannot find the file.

also the file is opened in the arduino software in a tab next to my sketch?

sorry if this is a super basic question I only just started doing arduino and nothing ever seems to work

Do this:

After that the error should go away. If it doesn't then let me know.

gdjidje:
also the file is opened in the arduino software in a tab next to my sketch?

When you use the #include <CapacitiveSensor.h> syntax the libraries folders are searched for the file but the sketch folder is not. If you want to #include a file from the sketch you need to use a different syntax:

#include "CapacitiveSensor.h"

That will cause the sketch folder to be searched first, then the libraries folders. But don't do that. You shouldn't dump libraries into the sketch folder as a workaround for not knowing how to properly install a library. If you actually have a good reason for wanting to put the library in the sketch folder that's fine but you should be aware that often libraries will require modification in order to do this. Those modifications can easily be done but at this point when you're struggling just to get your sketch to compile it's just an unnecessary complication.