$darkmode
Qore FileDataProvider Module Reference 1.0
FileStatRequestDataType.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
2 
25 namespace FileDataProvider {
27 class FileStatRequestDataType : public HashDataType {
28 
29 public:
30 protected:
32  const Fields = {
33  "path": {
34  "type": StringType,
35  "desc": "The file path",
36  },
37  "symlink": {
38  "type": BoolType,
39  "desc": "If True, then if the target path is a symbolic link, information about the link itself will "
40  "be returned instead of the target",
41  "default_value": False,
42  },
43  };
44 
45 public:
46 
49 
50 };
51 };
Data type for stat file request calls.
Definition: FileStatRequestDataType.qc.dox.h:27
const Fields
Field descriptions.
Definition: FileStatRequestDataType.qc.dox.h:32
const False
Qore FileDataProvider module definition.
Definition: FileCopyDataProvider.qc.dox.h:26