From 2b651e77e48c70a9f096380103c21217c9bb8643 Mon Sep 17 00:00:00 2001 From: Nate Coraor <nate@bx.psu.edu> Date: Fri, 15 Apr 2016 14:04:30 -0400 Subject: [PATCH] Ensure destination directories exist when copying files --- pulsar/client/util.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pulsar/client/util.py b/pulsar/client/util.py index 917a9e82..9edda1a0 100644 --- a/pulsar/client/util.py +++ b/pulsar/client/util.py @@ -75,6 +75,8 @@ def copy(source, destination): source = os.path.abspath(source) destination = os.path.abspath(destination) if source != destination: + if not os.path.exists(os.path.dirname(destination)): + os.makedirs(os.path.dirname(destination)) shutil.copyfile(source, destination) -- GitLab