Qore FileDataProvider Module Reference  1.0
FileMoveRequestDataType.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
2 
25 namespace FileDataProvider {
27 class FileMoveRequestDataType : public HashDataType {
28 
29 public:
30 protected:
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 
48 public:
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
const False
Qore FileDataProvider module definition.
Definition: FileCopyDataProvider.qc.dox.h:26