Carsten S.
unread,Aug 29, 2018, 3:30:17 PM8/29/18Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Quick Access Popup Support
Hi Jean,
why is something removed from a directory?
For files this is understandable, but with directories there is usually no file Extension
I'm not an expert on Authotkey but maybe maybe my idea offers a solution
contextmenu Mode 'Add folder' - If the directory name contains a file extension or not the 'FileShortName' is allways correct
code snippets:
———————-
FileShortName := ""
SplitPath, InputVar , OutFileName, OutDir, OutExtension, OutNameNoExt, OutDrive
// check if directory exist
If( InStr( FileExists ), "D") {
// Name of the variable in which to store the file name without its path. The file's extension is included.
FileShortName := %OutFileName%
}