Qore FileDataProvider Module Reference 1.0
Loading...
Searching...
No Matches
FileCreateRequestDataType.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
2
25namespace FileDataProvider {
27class FileCreateRequestDataType : public HashDataType {
28
29public:
30protected:
32 const Fields = {
33 "data": {
34 "type": DataType,
35 "desc": "The string or binary data for the file",
36 },
37 "mode": {
38 "type": IntType,
39 "desc": "The mode for the new file (default `0664`)",
40 "default_value": 0644,
41 },
42 "path": {
43 "type": StringType,
44 "desc": "The file path",
45 },
46 };
47
48public:
49
52
53};
54};
Data type for create file request calls.
Definition: FileCreateRequestDataType.qc.dox.h:27
const Fields
Field descriptions.
Definition: FileCreateRequestDataType.qc.dox.h:32
Qore FileDataProvider module definition.
Definition: FileCopyDataProvider.qc.dox.h:26