Home | History | Annotate | Download | only in atree

Lines Matching full:files

5 #include "files.h"
26 " -f FILELIST Specify one or more files containing the\n"
27 " list of files to copy.\n"
29 " which to look for the files\n"
31 " output files to.\n"
32 " -l Use hard links instead of copying the files.\n"
34 " of files included. It sets the variable ATREE_FILES.\n"
35 " -v VAR=VAL Replaces ${VAR} by VAL when reading input files.\n"
38 " The FILELIST files contain the list of files that will end up\n"
39 " in the final OUTPUTDIR. Atree will look for files in the INPUTDIR\n"
164 vector<FileRecord> files;
173 err = read_list_file(*it, g_variables, &files, &excludes);
179 // look for input files
181 for (vector<FileRecord>::iterator it=files.begin();
182 it!=files.end(); it++) {
187 // expand the directories that we should copy into a list of files
188 for (vector<FileRecord>::iterator it=files.begin();
189 it!=files.end(); it++) {
196 files.push_back(*it);
199 // get the name and modtime of the output files
200 for (vector<FileRecord>::iterator it=files.begin();
201 it!=files.end(); it++) {
210 for (vector<FileRecord>::iterator it=files.begin();
211 it!=files.end(); it++) {
222 // gather files that should become directores and directories that should
223 // become files
224 for (vector<FileRecord>::iterator it=files.begin();
225 it!=files.end(); it++) {
231 // delete files
255 // copy (or link) files
256 for (vector<FileRecord>::iterator it=files.begin();
257 it!=files.end(); it++) {
286 for (vector<FileRecord>::iterator it=files.begin();
287 it!=files.end(); it++) {