Examples: Path_MakeGeneric()


The following example converts a native pathname to a generic pathname and stores the result in a table at a network location, where workstations can share pathname information.

local string l_path;

{Set the local variable to the pathname the user enters.}
l_path = 'Native_Pathname';
{Convert the pathname to a generic pathname.}
l_path = Path_MakeGeneric(l_path);
Generic_Pathname of table Pathnames = l_path;
save table Pathnames;


Documentation Feedback