Cronsetdirectory()

Sets the URI directory that the cron tasks will run from. Calling this function will enable the crontab scheduler to start. This persists across server restarts

Usage

BOOLEAN = Cronsetdirectory( directory )
Argument Summary
directory uri directory - will be created if not exists

Calling

Supports named-parameter calling allowing you to use the function like:

Cronsetdirectory(
   directory=?
);

Supports passing parameters as a structure using ArgumentCollection:

Cronsetdirectory( ArgumentCollection={
   directory : ?
} );

Extra

For more information please visit CronTab Scheduler