MetadataSave Method (String) |
Saves the document content to the specified file.
Namespace: GroupDocs.MetadataAssembly: GroupDocs.Metadata (in GroupDocs.Metadata.dll) Version: 20.11
Syntaxpublic void Save(
string filePath
)
Public Sub Save (
filePath As String
)
public:
void Save(
String^ filePath
)
member Save :
filePath : string -> unit
Parameters
- filePath
- Type: SystemString
The full name of the output file.
Remarks
Examples
This example shows how to save a document to the specified location.
using (Metadata metadata = new Metadata(Constants.InputJpeg))
{
metadata.Save(Constants.OutputJpeg);
}
See Also