CreateExternalDirectory

STD.File.CreateExternalDirectory( location, path )

locationA null-terminated string containing the IP address of the remote machine.
pathA null-terminated string containing the directory path to create.

The CreateExternalDirectory function creates the path on the location (if it does not already exist). The dafileserv utility program must be running on the location machine.

Example:

IP   := '10.150.254.6';
path := '/c$/training/import/NewDir';
STD.File.CreateExternalDirectory(IP,path);