Click or drag to resize

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.9.0.0 (5.9.0)
Syntax
public static void CopyFilesUsingFromToPairs(
	List<Pair<string, string>> fromToPairs
)

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