Save a modified file to a specified location

This example shows how to save a modified file to a specified location on a local disk by passing an output path to the save method.

from groupdocs.metadata import Metadata


def save_file_to_specified_location():
    with Metadata("input.jpg") as metadata:
        # Edit or remove metadata here
        removed = metadata.sanitize()
        print(f"Removed {removed} properties")

        metadata.save("output.jpg")


if __name__ == "__main__":
    save_file_to_specified_location()

input.jpg is the sample file used in this example. Click here to download it.

Binary file (JPG, 795 KB)

Download full output

See also

More resources

GitHub examples

You may easily run the code above and see the feature in action in our GitHub examples:

Free online document metadata management App

You are welcome to view and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images and more with our free online Free Online Document Metadata Viewing and Editing App.