How to stop server-generated Word .DOCs from savin

2019-07-15 19:30发布

I have a Word .DOCument that's being generated by a (classic ASP) server. It's an HTML file that's being output as a .DOC using the application/msword content type. The document is generated fine, saves fine, opens up fine in Word, and is fully editable...

The problem occurs on the next document save in Word. A folder is created in the document's directory with the name "<filename>_files" -- just as if you were saving a web page in IE. Inside this folder are three files: colorschememapping.xml, filelist.xml and themedata.thmx. This happens when originally generating the document using IE or Firefox.

-> How can I prevent these _files folders from being created when saving in Microsoft Word?

(flow: users clicks link in browser, Save (.doc) As..., open .doc in MS Word, edit, save -> "_files" folder)

4条回答
ら.Afraid
2楼-- · 2019-07-15 20:04

Delete to recycle bin. This deletes both the word doc and the unwanted folder. Restore the word doc and then empty the bin.

查看更多
放我归山
3楼-- · 2019-07-15 20:09

It doesn't only happen generating file from Firefox/IE. Microsoft Word 2007 does it when editing any HTML file and saving.

The issue is that if you delete the directory, the HTML file get deleted too.

My workaround:

  1. Edit the file in Word usual
  2. Save the file
  3. Close the file (exit Word, or just close it)
  4. Right click on file in Explorer Select "Open With"->Notepad.
  5. Delete the file in Explorer
  6. Go back to Notepad and Save

You now only have a HTML file an no _files directory.

查看更多
手持菜刀,她持情操
4楼-- · 2019-07-15 20:13

If your output isn't too complicated try using RTF. I've had a decent amount of success by outputting RTF files with a .doc extension.

查看更多
闹够了就滚
5楼-- · 2019-07-15 20:20

Word 2007 and 2010 default to multi file HTML documents, linking the document to the content files. This is the default behavior for HTML based documents.

The only way around it, that I've found, is to create a real Word Doc without basing it on HTML, or the user has the select "Single File Web Page" when they do a Save As.

查看更多
登录 后发表回答