Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Side by Side Diff: tools/list_files.py

Issue 13982010: Use intermediate file containing javac arguments to overcome windows limitations (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3 # for details. All rights reserved. Use of this source code is governed by a 3 # for details. All rights reserved. Use of this source code is governed by a
4 # BSD-style license that can be found in the LICENSE file. 4 # BSD-style license that can be found in the LICENSE file.
5 5
6 '''Tool for listing files whose name match a pattern. 6 '''Tool for listing files whose name match a pattern.
7 7
8 Usage: 8 Usage:
9 python tools/list_files.py PATTERN DIRECTORY... 9 python tools/list_files.py PATTERN DIRECTORY...
10 ''' 10 '''
11 11
12 import os 12 import os
13 import re 13 import re
14 import sys 14 import sys
15 15
16 16 def list_files(pattern_str, search_directories):
17 def main(argv): 17 pattern = re.compile(pattern_str)
18 pattern = re.compile(argv[1]) 18 found_files = []
19 for directory in argv[2:]: 19 for directory in search_directories:
20 for root, directories, files in os.walk(directory): 20 for root, directories, files in os.walk(directory):
21 if '.svn' in directories: 21 if '.svn' in directories:
22 directories.remove('.svn') 22 directories.remove('.svn')
23 for filename in files: 23 for filename in files:
24 fullname = os.path.relpath(os.path.join(root, filename)) 24 fullname = os.path.relpath(os.path.join(root, filename))
25 fullname = fullname.replace(os.sep, '/') 25 fullname = fullname.replace(os.sep, '/')
26 if re.search(pattern, fullname): 26 if re.search(pattern, fullname):
27 print fullname 27 found_files.append(fullname)
28 return found_files
28 29
30 def main(argv):
31 pattern_str = argv[1]
32 directories = argv[2:]
33 for filename in list_files(pattern_str, directories):
34 print filename
29 35
30 if __name__ == '__main__': 36 if __name__ == '__main__':
31 sys.exit(main(sys.argv)) 37 sys.exit(main(sys.argv))
OLDNEW
« tools/generate_sources_file.py ('K') | « tools/generate_sources_file.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698