Run afl from specified folder

hi ,
in general to run a AFL from specified directory we use
#include_once <function\RunMyAFL.afl>
it will run afl in the scope of the amibroker environment.
how about if i would like run/call the AFL from specified outside of Amibroker environment.
e.g from C:\Aflcollection\RunMyAFL.afl

Waiting for solution , thanks

@Satyadev it is similar to the C language:

#include_once "C:\AFLCollection\RunMyAfl.afl";

For additionl details, please, see the official documentation

hi Beppe , thanks it solved.