AttachedFile.Bytes
AttachedFile.Bytes property
埋め込みファイルのバイナリ データを取得します。
public byte[] Bytes { get; }
例
添付ファイルのコンテンツを取得する方法を示します。
// ドキュメント ディレクトリへのパス。
string dataDir = RunExamples.GetDataDir_Attachments();
// ドキュメントを Aspose.Note にロードします。
Document oneFile = new Document(dataDir + "Sample1.one");
// 添付ファイル ノードのリストを取得します
IList<AttachedFile> nodes = oneFile.GetChildNodes<AttachedFile>();
// すべてのノードを繰り返します
foreach (AttachedFile file in nodes)
{
// ストリームオブジェクトに添付ファイルをロード
using (Stream outputStream = new MemoryStream(file.Bytes))
{
// ローカル ファイルを作成します
using (Stream fileStream = System.IO.File.OpenWrite(String.Format(dataDir + file.FileName)))
{
// ファイルストリームをコピー
CopyStream(outputStream, fileStream);
}
}
}
関連項目
- class AttachedFile
- 名前空間 Aspose.Note
- 組み立て Aspose.Note