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/)Thalion77July 24, 2006 at 7:21 AM#Extract drive letter of a pathHow can I extract the drive letter of a given path? e.g. E:\Install\Setup.exe => E
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/)stbJuly 24, 2006 at 8:01 AM#StrCpy $0 "E:\Install\Setup.exe" StrCpy $0 $0 1 ; => "E" If you want to us network shares (\\machine\share\Isntall\Setup.exe) you could use the SplitPath macro, which can be found here: http://nsis.sourceforge.net/Dynamica...te_directories
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/)kichikJuly 24, 2006 at 4:22 PM#Or GetRoot.