There are times when you want to exclude some files in a folder that you are copying files from. A good example is a folder that contains some temporary files that were created as a result of an earlier process. You may not need these files to litter your code base, so you have to option of easily excluding them.
For example, in the screenshot below which shows files generated by the Entity Framework scaffolder, we want to copy only the POCO classes to the folder or node we are setting properties for. The reason for this is that the DBContext class - CarRentalManagementContext.cs need to be copied to a different folder.
To enforce this behavior, you just have to add the filename to the "File(s) to Exclude" field:

