PFSDllWrapper.pfsAppend Method |
Append the contents of a parameter file object to an existing parameter file using the parameter file syntax.
Namespace:
DHI.PFS
Assembly:
DHI.PFS (in DHI.PFS.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntaxpublic static void pfsAppend(
IntPtr handle,
string fileName
)
Public Shared Sub pfsAppend (
handle As IntPtr,
fileName As String
)
public:
static void pfsAppend(
IntPtr handle,
String^ fileName
)
static member pfsAppend :
handle : IntPtr *
fileName : string -> unit
Parameters
- handle
- Type: System.IntPtr
A pfsFile handle. Handle to parameter file object - fileName
- Type: System.String
File name to append to
Remarks
This function is similar to pfsWrite, except that the contents of the actual parameter
object is appended to an existing file. If the specified file does not exist, the behaviour is equivalent to that of pfsWrite.
See Also