ddGetObjFilesEx
ddGetObjFilesEx(
b_objId
x_pathType
)
=> l_files / nil
Description
Lists all the files found in the object. This function is similar to ddGetObjFiles except that you can specify whether to look for the object in the temporary directory or the master directory, or both, with the x_pathType argument.
Arguments
|
b_objId
|
Object identifier returned by ddCreateLib or ddGetObj.
|
|
x_pathType
|
One of the following integer values:
-
0
Looks for the object only in the master directory and, if found, returns the list of files only from the master directory -
1
Looks for the object only in the temporary directory and, if found, returns the list of files only from the temporary directory -
2
Returns the list of files from both the master and temporary directories
|
Value Returned
|
l_files
|
All of the files connected to the specified object.
|
|
nil
|
No files were found.
|
Related Topics
ddGetObjFiles
Return to top