如何从 C# 程序将嵌入的 .dot 模板发送到 word?
我有一个嵌入 C# 程序中的模板文件,但我需要以某种方式将其存储在 temp 中,以便 word 可以读取它。但是,我不知道该怎么做......
I Have a template file embedded in a C# program but i need to store it in temp somehow so that word can read it. however, i don't know how to do that...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 System.Io.Path.GetTempFileName() 来获取有效的临时文件路径,然后您可以将点保存在该位置并使用 word 打开它。
you can use
System.Io.Path.GetTempFileName()
to get a valid temp file path then you can save your dot in that location and open it with word.