Save a modified file to a specified location
Leave feedback
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)
You may easily run the code above and see the feature in action in our GitHub examples:
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.
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.