DbFileSpec.Copy Method (Usual, Usual, Usual) | |
Copies all files associated with DBFileSpec objects to a different drive and/or directory.
Namespace:
VO
Assembly:
VORDDClasses (in VORDDClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD Copy(
oDBFSTarget,
lIDX,
lName
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual Copy(
Usual oDBFSTarget = default,
Usual lIDX = default,
Usual lName = default
)
Request Example
View SourceParameters
- oDBFSTarget (Optional)
- Type: Usual
The DBFileSpec object's target directory. Can be either optional or full path. - lIDX (Optional)
- Type: Usual
Logical parameter. TRUE also moves any index files associated with SELF. The default is TRUE. - 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 successful; otherwise, FALSE.
Examples 1
2SetDefault( "C:\CAVOxx\SAMPLES\GSTUTOR" )
3oDB := DBFileSpec{}
4oDB:FileName := "CUSTOMER"
5IF oDB:Find()
6oDB:Copy( "C:\TEST\" )
7ENDIF
8
9
10
11SetDefault( "C:\CAVOxx\SAMPLES\GSTUTOR" )
12oFS := FileSpec{ "C:\TEST\" }
13oDB := DBFileSpec{}
14oDB:FileName := "CUSTOMER"
15IF oDB:Find()
16oDB:Copy( oFS )
17ENDIF
See Also