ddObjHasNamedObjEx
ddObjHasNamedObjEx(
b_objId
t_fileName
x_pathType
)
=> t / nil
Description
Returns t if b_objId has a child object named t_fileName. This function is similar to ddObjHasNamedObj 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
|
The object file ID.
|
|
t_fileName
|
The file to search for.
|
|
x_pathType
|
One of the following integer values:
-
0
Looks for the object only in the master directory -
1
Looks for the object only in the temporary directory -
2
Looks for the object in the temporary directory first; if it is not found, looks for it in the master directory. However, if the object is a library, returns information about the library itself (the master directory), not its temporary directory.
|
Value Returned
|
t
|
The file was found.
|
|
nil
|
The file was not found.
|
Related Topics
ddObjHasNamedObj
Return to top