FileSpec.Copy Method | |
Make a copy of the file represented by this file specification.
Namespace:
VO
Assembly:
VOSystemClasses (in VOSystemClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD Copy(
oFSTarget,
lName
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual Copy(
Usual oFSTarget = default,
Usual lName = default
)
Request Example
View SourceParameters
- oFSTarget (Optional)
- Type: Usual
The name of the target file, including an optional drive, directory, and extension. The file is created following operating system rules. - lName (Optional)
- Type: Usual
Logical parameter. TRUE causes an auto-rename of the target file if a file conflict occurs during the copy. The default is FALSE.
Return Value
Type:
Usual
TRUE, if the file was successfully copied; otherwise, FALSE.
Examples
This example defines a file specification and then copies it to a target file:
1
2oFSSource := FileSpec{"c:\data\customer.dbf"}
3
4oFSSource:Copy("a:\custdata")
See Also