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

Unified Diff: dart/tools/list_files.py

Issue 10308006: Share a tool for listing dependencies thus fixing a dependency problem on Windows. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Spotted another Windows bug Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dart/frog/scripts/list_frog_files.py ('k') | dart/utils/apidoc/apidoc.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/list_files.py
diff --git a/dart/tools/list_files.py b/dart/tools/list_files.py
new file mode 100644
index 0000000000000000000000000000000000000000..e94443bb59f3b548f921f23c6af4254f0ae5eea3
--- /dev/null
+++ b/dart/tools/list_files.py
@@ -0,0 +1,31 @@
+#!/usr/bin/env python
+# Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+# for details. All rights reserved. Use of this source code is governed by a
+# BSD-style license that can be found in the LICENSE file.
+
+'''Tool for listing files whose name match a pattern.
+
+Usage:
+ python tools/list_files.py PATTERN DIRECTORY...
+'''
+
+import os
+import re
+import sys
+
+
+def main(argv):
+ pattern = re.compile(argv[1])
+ for directory in argv[2:]:
+ for root, directories, files in os.walk(directory):
+ if '.svn' in directories:
+ directories.remove('.svn')
ngeoffray 2012/05/02 11:00:41 Maybe that's because I don't know python well, but
ahe 2012/05/02 11:04:33 This is how you use os.walk. I don't like it, but
+ for filename in files:
+ fullname = os.path.relpath(os.path.join(root, filename))
+ fullname = fullname.replace(os.sep, '/')
+ if re.search(pattern, fullname):
+ print fullname
+
+
+if __name__ == '__main__':
+ sys.exit(main(sys.argv))
« no previous file with comments | « dart/frog/scripts/list_frog_files.py ('k') | dart/utils/apidoc/apidoc.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698