2017-09-05 46 views
0

我的doc文件裏面以下路徑如何編輯共享文件夾doc文件中ITHit.WebDAV.Client.DocManager

\\ 90.0.0.99 \文檔\上傳\ Test.doc的

憑什麼我我能夠編輯用我的代碼中使用ITHit.WebDAV.Client.DocManager

代碼示例文件:

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

回答

0

您可以使用此代碼來解決問題:

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

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

我希望幫助你。