diff --git a/vecorel_cli/conversion/base.py b/vecorel_cli/conversion/base.py index 9518d98..f176bc5 100644 --- a/vecorel_cli/conversion/base.py +++ b/vecorel_cli/conversion/base.py @@ -183,7 +183,7 @@ def get_data( for path, uri in paths: # e.g. allow "*.shp" to identify the single relevant file without knowing the name in advance if "*" in path: - lst = glob(path) + lst = glob(path, recursive=True) assert len(lst) == 1, f"Can not match {path} to a single file" path = lst[0] self.info(f"Reading {path} into GeoDataFrame(s)")