如果需要在多个文件/文件夹上运行实用程序,以下命令将帮助您:
在命令提示下键入以下内容:
for %f in (*.shp) do shptree %f
或者递归运行(在所有子文件夹中):
for /R %f in (*.shp) do shptree %f
find /path/to/data -name "*.shp" -exec shptree {} \;
About Products Community Development Downloads Documentation FAQ PSC Twitter