aboutsummaryrefslogtreecommitdiffstats
path: root/pym/portage/util/_async/FileCopier.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/util/_async/FileCopier.py')
-rw-r--r--pym/portage/util/_async/FileCopier.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/pym/portage/util/_async/FileCopier.py b/pym/portage/util/_async/FileCopier.py
new file mode 100644
index 000000000..27e5ab4c0
--- /dev/null
+++ b/pym/portage/util/_async/FileCopier.py
@@ -0,0 +1,17 @@
+# Copyright 2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+from portage import os
+from portage import shutil
+from portage.util._async.ForkProcess import ForkProcess
+
+class FileCopier(ForkProcess):
+ """
+ Asynchronously copy a file.
+ """
+
+ __slots__ = ('src_path', 'dest_path')
+
+ def _run(self):
+ shutil.copy(self.src_path, self.dest_path)
+ return os.EX_OK