CoreUtilsCopyFilesUsingFromToPairs Method |
Copies the files specified in the pairs to their destinations. Assumes the folders to copy to exist. If the source file doesn't exist, the file
is skipped. If the destination file exists, it's overwritten.
Namespace:
SD.LLBLGen.Pro.Core
Assembly:
SD.LLBLGen.Pro.Core (in SD.LLBLGen.Pro.Core.dll) Version: 5.8.0.0 (5.8.21.0208)
Syntax public static void CopyFilesUsingFromToPairs(
List<Pair<string, string>> fromToPairs
)
Public Shared Sub CopyFilesUsingFromToPairs (
fromToPairs As List(Of Pair(Of String, String))
)
Parameters
- fromToPairs
- Type: System.Collections.GenericListPairString, String
The from-to pairs of the files to copy. Value1 is the source file, Value2 is the destination file.
See Also