#include #include "globals.h" /* * run etc/i.find command find all cell, vect files * in the target location. */ int find_target_files (void) { char command[1024]; select_target_env(); sprintf (command, "%s/etc/i.find %s %s cell %s vector %s", G_gisbase(), G_location(), G_mapset(), cell_list, vect_list); select_current_env(); if( 0 != system(command) ) G_fatal_error("Problem running i.find"); return 0; }