summaryrefslogtreecommitdiff
path: root/swiftclient/service.py
diff options
context:
space:
mode:
Diffstat (limited to 'swiftclient/service.py')
-rw-r--r--swiftclient/service.py13
1 files changed, 12 insertions, 1 deletions
diff --git a/swiftclient/service.py b/swiftclient/service.py
index d7c05ca..7c55769 100644
--- a/swiftclient/service.py
+++ b/swiftclient/service.py
@@ -12,6 +12,7 @@
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+import os
from concurrent.futures import as_completed, CancelledError, TimeoutError
from copy import deepcopy
from errno import EEXIST, ENOENT
@@ -162,6 +163,8 @@ _default_local_options = {
'read_acl': None,
'write_acl': None,
'out_file': None,
+ 'out_directory': None,
+ 'remove_prefix': False,
'no_download': False,
'long': False,
'totals': False,
@@ -889,7 +892,9 @@ class SwiftService(object):
'no_download': False,
'header': [],
'skip_identical': False,
- 'out_file': None
+ 'out_directory': None,
+ 'out_file': None,
+ 'remove_prefix': False,
}
:returns: A generator for returning the results of the download
@@ -986,6 +991,12 @@ class SwiftService(object):
options['skip_identical'] = (options['skip_identical'] and
out_file != '-')
+ if options['prefix'] and options['remove_prefix']:
+ path = path[len(options['prefix']):].lstrip('/')
+
+ if options['out_directory']:
+ path = os.path.join(options['out_directory'], path)
+
if options['skip_identical']:
filename = out_file if out_file else path
try: