检测加密 Office Open XML 的文件格式 - OOXML 文件
Contents
[
Hide
]
办公室开放 XML(也称为面向对象的XML要么Microsoft 打开 XML(MOX)) 是一种基于 XML 的文件格式,由 Microsoft 开发,用于表示电子表格、图表、演示文稿和文字处理文档等办公文档。
Aspose.Cells 提供了一种检测加密文件格式的方法Microsoft 打开 XML文件。要识别文件类型,请使用FileFormatUtil.DetectFileFormat方法如下代码示例所示。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
//Source directory | |
string sourceDir = RunExamples.Get_SourceDirectory(); | |
var filename = sourceDir + "encryptedBook1.out.tmp"; | |
Stream stream = File.Open(filename, FileMode.Open); | |
FileFormatInfo fileFormatInfo = FileFormatUtil.DetectFileFormat(stream, "1234"); // The password is 1234 | |
Console.WriteLine("File Format: " + fileFormatInfo.FileFormatType); |