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

Side by Side Diff: build/android/devil/utils/host_utils.py

Issue 1314913009: [Android] Move some pylib modules into devil/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 3 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 | « build/android/devil/utils/cmd_helper_test.py ('k') | build/android/devil/utils/mock_calls.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import os 5 import os
6 6
7 7
8 def GetRecursiveDiskUsage(path): 8 def GetRecursiveDiskUsage(path):
9 """Returns the disk usage in bytes of |path|. Similar to `du -sb |path|`.""" 9 """Returns the disk usage in bytes of |path|. Similar to `du -sb |path|`."""
10 running_size = os.path.getsize(path) 10 running_size = os.path.getsize(path)
11 if os.path.isdir(path): 11 if os.path.isdir(path):
12 for root, dirs, files in os.walk(path): 12 for root, dirs, files in os.walk(path):
13 running_size += sum([os.path.getsize(os.path.join(root, f)) 13 running_size += sum([os.path.getsize(os.path.join(root, f))
14 for f in files + dirs]) 14 for f in files + dirs])
15 return running_size 15 return running_size
16 16
OLDNEW
« no previous file with comments | « build/android/devil/utils/cmd_helper_test.py ('k') | build/android/devil/utils/mock_calls.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698