The FilePath property specifies or returns the path you want to prefix to the file name column in a custom transformation.
object.FilePath [= string]
Part | Description |
---|---|
object | Expression that evaluates to an object in the Applies To list |
string | Path to prefix to the file name column when it contains no path |
String
Read/write
HRESULT GetFilePath(BSTR* pRetVal);
HRESULT SetFilePath(BSTR pRetVal);
"\" will be appended to the FilePath property, when necessary, to separate the path from the file name in the source column. If a value for FilePath is provided, the value will be prefixed to the file name even when it already includes a path.
The property also can be referenced through the TransformServerProperties collection with the following code:
Set transprops = transform.TransformServerProperties
transprops("FilePath") [= string]