-3
A
回答
0
示例代碼你可以publish an Excel file to Sharepoint(又名Chèvre-poing),但它看起來相當困難,因爲認證機制被篡改(如山羊)。
所以,你應該做的是映射本地共享與SharePoint(\\my_chevre_poing\goaty\
,然後有一點點VBA它從你最喜歡的宏地點:
Sub Copy_Folder()
'This example copy all files and subfolders from FromPath to ToPath.
'Note: If ToPath already exist it will overwrite existing files in this folder
'if ToPath not exist it will be made for you.
Dim FSO As Object
Dim FromPath As String
Dim ToPath As String
FromPath = "C:\local\trucs\" '<< your own source there
ToPath = "\\my_chevre_poing\goaty_trucs\" '<< your share there
If Right(FromPath, 1) = "\" Then
FromPath = Left(FromPath, Len(FromPath) - 1)
End If
If Right(ToPath, 1) = "\" Then
ToPath = Left(ToPath, Len(ToPath) - 1)
End If
Set FSO = CreateObject("scripting.filesystemobject")
If FSO.FolderExists(FromPath) = False Then
MsgBox FromPath & " doesn't exist"
Exit Sub
End If
FSO.CopyFolder Source:=FromPath, Destination:=ToPath
MsgBox "You can find the files and subfolders from " & FromPath & " in " & ToPath
End Sub
您也可以找到huge resource there
相關問題
- 1. excel vba宏將多個文件從文件夾複製到文件夾
- 2. 使用Excel VBA將訪問數據庫從一個文件夾複製到另一個文件夾錯誤
- 3. 使用vba複製粘貼微軟word文件到另一個文件夾
- 4. 如何使用vba將列從一個excel文件複製到另一個
- 5. 使用vba將文件從一個文件夾複製到另一個文件夾
- 6. 複製文件從文件夾複製到另一個用C#
- 7. Excel VBA複製Outlook發送項目到Windows文件夾
- 8. 使用VBA將數據從SharePoint站點複製到Excel
- 9. Excel的VBA複製到使用細胞
- 10. Excel VBA:將excel列從一個文件複製到其他同名文件(不同文件夾中)
- 11. 使用VBA將文本文件複製到Excel中時出錯
- 12. 如何將數據從excel表單複製到另一個使用VBA上載到sharepoint的excel表單中?
- 13. 複製文件夾到另一個
- 14. 使用VBA將行復制到Excel中的另一個表格
- 15. 將文件夾從一個文件夾複製到一個新文件夾
- 16. PowerShell的最新文件夾複製到另一個文件夾
- 17. ROBOCOPY - 文件夾的內容複製到一個文件夾
- 18. 使用vbscript將文件從一個文件夾複製到另一個文件
- 19. 使用VBA將多個文件複製到單個文件
- 20. VBA - 從多個Excel文件複製並粘貼到單個Excel文件
- 21. 從一個excel複製到其他使用VBA
- 22. 從VBA excel複製到powerpoint
- 23. 複製文件夾到另一個文件夾
- 24. 複製.dll文件到同一文件夾中,使用CMake的
- 25. 將x文件從一個文件夾複製到另一個
- 26. 將png文件從一個文件夾複製到另一個
- 27. 將文件夾複製到文件夾
- 28. 將文件從一個文件夾複製到另一個文件夾
- 29. 將文件從一個文件夾複製到另一個文件夾
- 30. 如何將文件從一個文件夾複製到另一個文件夾