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