Class UnsupportedFileFormatException

UnsupportedFileFormatException class

ファイル フォーマットが認識されないか、Aspose.Note. でサポートされていない場合、ドキュメントのロード中にスローされます。

public class UnsupportedFileFormatException : Exception

プロパティ

名前説明
FileFormat { get; }検出された場合、渡されたデータのファイル形式を取得します。

OneNote 2007 形式がサポートされていないためにドキュメントの読み込みが失敗したかどうかを確認する方法を示します。

// ドキュメント ディレクトリへのパス。
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
string fileName = Path.Combine(dataDir, "OneNote2007.one");

try
{
    new Document(fileName);
}
catch (UnsupportedFileFormatException e)
{
    if (e.FileFormat == FileFormat.OneNote2007)
    {
        Console.WriteLine("It looks like the provided file is in OneNote 2007 format that is not supported.");
    }
    else
        throw;
}

関連項目