Alex d7ffe0b7ec
DelazJ bonification
Co-authored-by: Harrissou Sant-anna <delazj@gmail.com>
2022-01-11 11:17:49 -05:00

19 lines
444 B
Plaintext

{
"name": "is_file",
"type": "function",
"groups": ["Files and Paths"],
"description": "Returns true if a path corresponds to a file.",
"arguments": [{
"arg": "path",
"description": "a file path"
}],
"examples": [{
"expression": "is_file('/home/qgis/data/country_boundaries.shp')",
"returns": "true"
}, {
"expression": "is_file('/home/qgis/data/')",
"returns": "false"
}],
"tags": ["path", "file"]
}