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