简体   繁体   中英

how to edit shared folder doc file in ITHit.WebDAV.Client.DocManager

my doc file is inside below path

\\\\90.0.0.99\\Documents\\upload\\test.doc

so how can i am able to edit this file using ITHit.WebDAV.Client.DocManager

code sample using in my code:

function edit() {
    ITHit.WebDAV.Client.DocManager.MicrosoftOfficeEditDocument(
        \\90.0.0.99\Documents\upload\test.doc",errorCallback
    );
 }

YOU CAN USE THIS CODE TO SOLVE PROBLEM:

  ITHit.WebDAV.Client.DocManager.EditDocument("https:\\90.0.0.99\Documents\upload\test.doc", "/", protocolInstallMessage);

or

ITHit.WebDAV.Client.DocManager.MicrosoftOfficeEditDocument("\\90.0.0.99\Documents\upload\test.doc");

i hope help you.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM