批脚本

如果需要在多个文件/文件夹上运行实用程序,以下命令将帮助您:

Windows

在命令提示下键入以下内容:

for %f in (*.shp) do shptree %f

或者递归运行(在所有子文件夹中):

for /R %f in (*.shp) do shptree %f

Linux系统

find /path/to/data -name "*.shp" -exec shptree {} \;