neu
This commit is contained in:
@@ -129,8 +129,10 @@ Public Class cProgramFunctions
|
||||
End Try
|
||||
End Function
|
||||
|
||||
Public Function copyProgram(ByRef sourcePfad As String, ByVal destPfad As String, Optional ZIP As Boolean = False) As Boolean
|
||||
If ZIP Then
|
||||
Public Function copyProgram(ByRef sourcePfad As String, ByVal destPfad As String, Optional ZIP As Boolean = False, Optional incrementalCopy As Boolean = False, Optional list As List(Of VERAG_PROG_ALLGEMEIN.cProgrammeUpdate) = Nothing) As Boolean
|
||||
If incrementalCopy Then
|
||||
Return VERAG_PROG_ALLGEMEIN.cProgrammeUpdate.copyProgramLIST(sourcePfad, destPfad, {})
|
||||
ElseIf ZIP Then
|
||||
Return copyProgramZIP(sourcePfad, destPfad)
|
||||
Else
|
||||
Return copyProgramNOTZip(sourcePfad, destPfad)
|
||||
@@ -176,6 +178,8 @@ Public Class cProgramFunctions
|
||||
Return False
|
||||
End Function
|
||||
|
||||
|
||||
|
||||
Private Function FileCopier(ByRef sourcePfad As String, ByVal destPfad As String) As Boolean
|
||||
If Not destPfad.EndsWith("\") Then destPfad = destPfad & "\"
|
||||
Try
|
||||
|
||||
Reference in New Issue
Block a user