Home | History | Annotate | Download | only in tools

Lines Matching full:files

232     """recursively walk a list of paths and files, only keeping the source files in directories"""
237 for root, dirs, files in os.walk(path):
243 for f in files:
254 for root, dirs, files in os.walk(path, topdown=False):
258 for name in files:
294 """a class used to edit several files at once"""
307 for root, dirs, files in os.walk(path):
308 for f in files:
375 files = string.join(sorted(adds)," ")
376 D( "%d new files will be p4 add-ed" % len(adds) )
379 D2("P4 ADDS: %s" % files)
380 o = commands.getoutput( "p4 add " + files )
384 files = string.join(sorted(edits)," ")
385 D( "%d files will be p4 edit-ed" % len(edits) )
386 D2("P4 EDITS: %s" % files)
387 o = commands.getoutput( "p4 edit " + files )
393 files = string.join(sorted(deletes)," ")
394 D( "%d files will be p4 delete-d" % len(deletes) )
395 D2("P4 DELETES: %s" % files)
396 o = commands.getoutput( "p4 delete " + files )