将一个文档的内容复制到另一个文档
我正在尝试复制一个文档的内容并通过命令提示符将其附加到另一个文档。通过命令(复制 fileA.txt + fileb.txt),它可以很好地处理简单的 .txt 文件。但是,当我尝试将 MSWord 文件的内容复制到另一个 MSWord 文件时,却没有发生。虽然目标文件大小不断增加,但没有任何内容。当在记事本中打开doc文件时,它显示不断添加不可读的数据。请帮忙。
I am trying to copy the contents of one document and append it to another document through command prompt. It works fine for simple .txt file through the command (copy fileA.txt + fileb.txt). But when I try to copy the contents of a MSWord file to another MSWord file, it does not happen. Though the target file size keeps increasing but without any content. When opened the doc file in notepad, it shows soe unreadable data keeps getting added. Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
(这些是 unix 命令;如果您在 Windows 上运行,则可以使用相应的等效命令或 Cygwin)
对于文本文件:
猫文件1>> file2
对于二进制文件或特殊格式(即word):
- 编写一个程序从一个文件中提取文本并将其插入到另一个文件中,保留格式等,
或者
file3 现在拥有所有文本。
(These are unix commands; if you're running on Windows, you can use the appropriate equivalent or Cygwin)
For text files:
cat file1 >> file2
For binary files or special formats (i.e., word):
- write a program to pull the text from one and insert it into the other, preserving formatting, etc.
or
file3 now has all the text.
您不能简单地连接 MS Word 文件。它们是二进制文件,只能使用 MS Word 或某些 API 进行串联。不是从命令行
You can't simply concatenate MS Word files. They are binary files and concatenation can be made only using MS Word or some APIs. Not from command line