J
Jul
File.Copy Method does not let use template for copying files,
I can not use File.Copy("C:\ABC\*.txt", "C:\XYZ\*.txt")
but I need to use such way:
File.Copy("C:\ABC\1.txt", "C:\XYZ\1.txt")
File.Copy("C:\ABC\2.txt", "C:\XYZ\2.txt")
Does exist way in .Net for copying file by template?
I can not use File.Copy("C:\ABC\*.txt", "C:\XYZ\*.txt")
but I need to use such way:
File.Copy("C:\ABC\1.txt", "C:\XYZ\1.txt")
File.Copy("C:\ABC\2.txt", "C:\XYZ\2.txt")
Does exist way in .Net for copying file by template?