0 votes 0 answers 21 views Arduino IDE on LINUX system, how to use the #include directive to get files specific from a NAS

I did another sketch, about as simple as it can get. I included the wire lib just to show it is looking in the arduino library area. When I run it from my home disk and add the full path it works, that line was commented out. When I run the same thing from the NAS I still have the same problem. Here is the Code and error messages.

#include "Wire.h" // This allows us to communicate via I2C
//include "/home/gil/Desktop/Blink_Blink/Blank/Home_Can_Address.h"
#include "smb://server20.local/videos/Blink_Blink/Blank/Home_Can_Address.h"
#define I_Am Cal_Room

void setup() { }
void loop() { }

The error message:
Blinik_Blink:3:10: fatal error: smb://server20.local/videos/Blink_Blink/Blank/Home_Can_Address.h: No such file or directory
#include "smb://server20.local/videos/Blink_Blink/Blank/Home_Can_Address.h"
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
exit status 1
smb://server20.local/videos/Blink_Blink/Blank/Home_Can_Address.h: No such file or directory

I added verbose.