Lines Matching defs:files

7 #include "files.h"
28 " -f FILELIST Specify one or more files containing the\n"
29 " list of files to copy.\n"
31 " which to look for the files\n"
33 " output files to.\n"
34 " -l Use hard links instead of copying the files.\n"
36 " of files included. It sets the variable ATREE_FILES.\n"
37 " -v VAR=VAL Replaces ${VAR} by VAL when reading input files.\n"
41 " The FILELIST files contain the list of files that will end up\n"
42 " in the final OUTPUTDIR. Atree will look for files in the INPUTDIR\n"
205 vector<FileRecord> files;
214 err = read_list_file(*it, g_variables, &files, &excludes);
220 // look for input files
222 for (vector<FileRecord>::iterator it=files.begin();
223 it!=files.end(); it++) {
227 // expand the directories that we should copy into a list of files
228 for (vector<FileRecord>::iterator it=files.begin();
229 it!=files.end(); it++) {
236 files.push_back(*it);
239 // get the name and modtime of the output files
240 for (vector<FileRecord>::iterator it=files.begin();
241 it!=files.end(); it++) {
250 for (vector<FileRecord>::iterator it=files.begin();
251 it!=files.end(); it++) {
262 // gather files that should become directores
263 // and directories that should become files
264 for (vector<FileRecord>::iterator it=files.begin();
265 it!=files.end(); it++) {
271 // delete files
281 // remove all files or directories as requested from the input atree file.
283 for (vector<FileRecord>::iterator it=files.begin();
284 it!=files.end(); it++) {
307 // copy (or link) files that are newer or of different size
308 for (vector<FileRecord>::iterator it=files.begin();
309 it!=files.end(); it++) {
344 for (vector<FileRecord>::iterator it=files.begin();
345 it!=files.end(); it++) {