Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)jonwilApril 23, 2011 at 12:01 AM#How to move/rename files based on wildcardBasically what I want is a way to say "move *.w3d from $INSTDIR\data to $INSTDIR\backup" How can I do that in NSIS?
Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)MSGApril 23, 2011 at 2:40 AM#You may use FindFirst / FindNext in a small loop, and call Rename on each hit. You might want to make sure that the hit is not a directory: ${IfNot} ${FileExists} $hit\*.* Rename etc.