Конвертировать один файл документа в PDF - PullRequest
2 голосов
/ 11 марта 2011

Я использую следующий код Как программно конвертировать файлы Word в PDF? для преобразования файла doc в pdf.но код упоминает получение всех файлов .doc из определенной директории, в то время как я хочу, чтобы только те, которые я выбрал из приложения, или иногда только один файл.

Пожалуйста, укажите мне

спасибо!

Ответы [ 3 ]

5 голосов
/ 11 марта 2011

Тот же код, модифицированный для одного файла:

using Microsoft.Office.Interop.Word;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;

...

// Create a new Microsoft Word application object
Microsoft.Office.Interop.Word.Application word = new Microsoft.Office.Interop.Word.Application();

// C# doesn't have optional arguments so we'll need a dummy value
object oMissing = System.Reflection.Missing.Value;

// Get a Word file
FileInfo wordFile = new FileInfo("myDoc.doc");

word.Visible = false;
word.ScreenUpdating = false;

// Cast as Object for word Open method
Object filename = (Object)wordFile.FullName;

// Use the dummy value as a placeholder for optional arguments
Document doc = word.Documents.Open(ref filename, ref oMissing,
    ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,
    ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,
    ref oMissing, ref oMissing, ref oMissing, ref oMissing);
doc.Activate();

object outputFileName = wordFile.FullName.Replace(".doc", ".pdf");
object fileFormat = WdSaveFormat.wdFormatPDF;

// Save document into PDF Format
doc.SaveAs(ref outputFileName,
    ref fileFormat, ref oMissing, ref oMissing,
    ref oMissing, ref oMissing, ref oMissing, ref oMissing,
    ref oMissing, ref oMissing, ref oMissing, ref oMissing,
    ref oMissing, ref oMissing, ref oMissing, ref oMissing);

// Close the Word document, but leave the Word application open.
// doc has to be cast to type _Document so that it will find the
// correct Close method.                
object saveChanges = WdSaveOptions.wdDoNotSaveChanges;
((_Document)doc).Close(ref saveChanges, ref oMissing, ref oMissing);
doc = null;

// word has to be cast to type _Application so that it will find
// the correct Quit method.
((_Application)word).Quit(ref oMissing, ref oMissing, ref oMissing);
word = null;
2 голосов
/ 11 марта 2011

Код ищет все файлы .doc в папке и просматривает их. Если бы у вас был только один файл в папке, он просто преобразовал бы этот.

Вы можете изменить эту строку кода:

FileInfo[] wordFiles = dirInfo.GetFiles("*.doc");

, чтобы просто найти ваш файл, например

FileInfo[] wordFiles = dirInfo.GetFiles("myselectedfile.doc");
0 голосов
/ 11 марта 2011
...