summaryrefslogtreecommitdiff
path: root/systrace/catapult/common/py_utils/py_utils/file_util.py
diff options
context:
space:
mode:
Diffstat (limited to 'systrace/catapult/common/py_utils/py_utils/file_util.py')
-rw-r--r--systrace/catapult/common/py_utils/py_utils/file_util.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/systrace/catapult/common/py_utils/py_utils/file_util.py b/systrace/catapult/common/py_utils/py_utils/file_util.py
deleted file mode 100644
index b1602c9..0000000
--- a/systrace/catapult/common/py_utils/py_utils/file_util.py
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 2018 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import errno
-import os
-import shutil
-
-
-def CopyFileWithIntermediateDirectories(source_path, dest_path):
- """Copies a file and creates intermediate directories as needed.
-
- Args:
- source_path: Path to the source file.
- dest_path: Path to the destination where the source file should be copied.
- """
- assert os.path.exists(source_path)
- try:
- os.makedirs(os.path.dirname(dest_path))
- except OSError as e:
- if e.errno != errno.EEXIST:
- raise
- shutil.copy(source_path, dest_path)