将单个 doc 文件转换为 pdf
我正在使用以下代码 如何以编程方式将 Word 文件转换为 PDF ? 将 doc 文件转换为 pdf。但代码提到从特定目录获取所有 .doc 文件,而我希望只包含我从应用程序中选择的文件,或者有时只包含单个文件。
请指导我
谢谢!
I am using following code How do I convert Word files to PDF programmatically? to convert the doc file to pdf. but the code mentions getting all .doc files from specific directory whereas i wish to have only those i have selected from application or sometimes only a single file.
Please guide me
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
相同的代码,针对单个文件进行修改:
The same code, modified for one single file:
该代码正在查找文件夹中的所有 .doc 文件并循环遍历它们。如果您只有文件夹中的一个文件,它只会转换该文件。
您可以更改这行代码:
仅查找您的文件,例如
The code is looking for all .doc files in a folder and looping through them. If you jut had the one file in the folder, it would just convert that one.
You could change this line of code:
to just look for your file, eg
您好,
我认为这些链接会对您有很大帮助:
https:// stackoverflow.com/questions/891531/convert-xls-doc-files-to-pdf-with-c
http://www.codeproject.com/KB/cs/convertdocintootherformat.aspx
HI,
i think these links will help you a lot:
https://stackoverflow.com/questions/891531/convert-xls-doc-files-to-pdf-with-c
http://www.codeproject.com/KB/cs/convertdocintootherformat.aspx