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

Side by Side Diff: mojo/public/tools/ls.py

Issue 2250183003: Make the fuchsia mojo/public repo the source of truth. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « mojo/public/tools/gn/zip.py ('k') | mojo/public/tools/prepend.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/python
2 # Copyright 2015 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 """Recursively list files of the target directory. Ignores dot files."""
7
8 import argparse
9 import os
10 import sys
11
12 def main(target_directory):
13 for root, dirs, files in os.walk(target_directory):
14 files = [f for f in files if not f[0] == '.']
15 dirs[:] = [d for d in dirs if not d[0] == '.']
16 for f in files:
17 path = os.path.join(root, f)
18 print path
19
20 if __name__ == '__main__':
21 parser = argparse.ArgumentParser(
22 description="Recursively list files of the target directory")
23 parser.add_argument("--target-directory",
24 dest="target_directory",
25 metavar="<target-directory>",
26 type=str,
27 required=True,
28 help="The target directory")
29
30 args = parser.parse_args()
31 sys.exit(main(args.target_directory))
OLDNEW
« no previous file with comments | « mojo/public/tools/gn/zip.py ('k') | mojo/public/tools/prepend.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698