Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
583 B
Plaintext
Raw Normal View History

{
"name": "is_directory",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["Files and Paths"],
"description": "Returns TRUE if a path corresponds to a directory.",
"arguments": [{
"arg": "path",
2022-02-09 20:47:21 +01:00
"description": "a file path or a map layer value. If a map layer value is specified then the file source of the layer will be used."
}],
"examples": [{
"expression": "is_directory('/home/qgis/data/country_boundaries.shp')",
2022-03-21 09:20:52 +01:00
"returns": "FALSE"
}, {
"expression": "is_directory('/home/qgis/data/')",
"returns": "TRUE"
}],
"tags": ["path", "directory", "folder"]
}