MATRIX Server 로 파일을 upload 합니다.
코드 블럭 | ||||
---|---|---|---|---|
| ||||
public bool UploadFile( string filePath, string serverFolder, string ServerFilename, bool deleteOnComplete ) |
...
upload 완료후 local 파일 자동 삭제 여부 (생략할 경우 local 파일 유지, true 일경우 local 파일 삭제)
Return ValueReturns
Type: bool
정상일 경우 : true
오류 일경우 : false
...
코드 블럭 | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
'========================================================================== 'matrix 서버에 file을 upload 합니다. 'server/reports/folderxxx 에 생성됩니다. '========================================================================== Public Sub UploadFileTest() Dim mxmodule As Object Set mxmodule = Application.COMAddIns.Item("iMATRIX6iMATRIX.ExcelModule").Object result = mxmodule.xapi.UploadFile("c:\test3.csv", "folder1") '오류 확인 If result = False Then MsgBox "upload fail " & mxmodule.xapi.LastErrorMessage Else MsgBox "upload success" End If End Sub |
...