Qore FileDataProvider Module Reference 1.0
Loading...
Searching...
No Matches
FileMoveRequestDataType.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
2
25namespace FileDataProvider {
27class FileMoveRequestDataType : public HashDataType {
28
29public:
30protected:
32 const Fields = {
33 "source": {
34 "type": StringType,
35 "desc": "The source file path",
36 },
37 "target": {
38 "type": StringType,
39 "desc": "The target file path",
40 },
41 "overwrite": {
42 "type": BoolType,
43 "desc": "Should existing target files be overwritten?",
44 "default_value": False,
45 },
46 };
47
48public:
49
52
53};
54};
Data type for move file request calls.
Definition: FileMoveRequestDataType.qc.dox.h:27
const Fields
Field descriptions.
Definition: FileMoveRequestDataType.qc.dox.h:32
Qore FileDataProvider module definition.
Definition: FileCopyDataProvider.qc.dox.h:26