Is there a way to include a file without giving it a full path? EX if I have a script in @scriptDir\Scripts and I want to include it on a program that I have in @scriptdir
I've tried a ton of different ways of doing this, but none of them seem to work:
#include "..\Resources\_Scipt.au3" #include "\Resources\_Scipt.au3" #include "...\Resources\_Scipt.au3" #include ".\Resources\_Scipt.au3" #include ."\Resources\_Scipt.au3"
Can this be done?