Hi
Here is what I did.
1. Copy input document into the shared folder.
2. Open save document using Aspose.Words. Here is my code.
Document doc = new Document(@"\\192.168.0.4\Test\in.doc");
doc.Save(@"\\192.168.0.4\Test\out.doc", SaveFormat.Doc);
3. Open “out.doc” from network folder using MS Word 2007 and type “1” at
the beginning of document. Save document.
4. Open changed “out.doc” using Aspose,Words.
Document doc = new Document(@"\\192.168.0.4\Test\out.doc");
doc.Save(@"\\192.168.0.4\Test\out1.doc", SaveFormat.Doc);
Document works fine at
all stages. Please check maybe I have missed something. Also maybe there is
something wrong with permissions on your side.
Best
regards.