Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 1.58 KB

README.md

File metadata and controls

30 lines (25 loc) · 1.58 KB

Rackspace Cloud Files Copy Script

This node.js project is created to copy large set of files from one of your cloud container to another cloud container

Important: I had to modify pkgcloud node module to remove "x-object-meta-" prefix when setting the headers. So I have uploaded customized node_module in side the project. So you can use it. https://developer.rackspace.com/docs/cloud-files/quickstart/?lang=node.js#change-object-metadata

pkgcloud/lib/pkgcloud/openstack/storage/storageClient.js

// removed this "x-object-meta-" prefix to fix cors origin key issue
// const OBJECT_META_PREFIX = 'x-object-meta-';
const OBJECT_META_PREFIX = '';

Created by: Charitha Basnayake crwbasnayake@gmail.com

Reference: