$darkmode
Qore FileDataProvider Module Reference 1.0
FileMkdirRequestDataType.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
2 
25 namespace FileDataProvider {
27 class FileMkdirRequestDataType : public HashDataType {
28 
29 public:
30 protected:
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 
44 public:
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