私は複数のワードファイル(1500以上)を持っており、それらをプログラム的にPDFに変換したいと思います。私は次の関数に複数のファイルを.docから.pdfに変換する
public static void convertor(string filename)
{
Microsoft.Office.Interop.Word.Application appWord = new Microsoft.Office.Interop.Word.Application();
File.SetAttributes(filename, FileAttributes.Temporary);
wordDocument = appWord.Documents.Open(filename);
wordDocument.ExportAsFixedFormat(filename.ToString() + ".pdf", WdExportFormat.wdExportFormatPDF);
}
を使用しますが、私は、プログラムファイルのロックを解除するにはどうすればよい
ファイルごとに次のダイアログを取得しますか?
interopは物事を適切に解放するためにおかげです。 interopをExcelに関連するが、使用するかもしれない:http://stackoverflow.com/questions/158706/how-to-properly-clean-up-excel-interop-objects – Kritner