HCP System Management Help


Example 1: Storing an object (CIFS)

This example stores an object named wind.jpg in the existing images directory by copying a file of the same name from the local file system.

Windows command

copy wind.jpg x:\images

Python code

import shutil
shutil.copy("wind.jpg", "x:\\images\\wind.jpg")

© 2017 Hitachi Vantara Corporation. All rights reserved.