Skip to content

Instantly share code, notes, and snippets.

@SmugZombie
Created June 15, 2016 22:52
Show Gist options
  • Save SmugZombie/12f7445a97b544b962278071ded8ce57 to your computer and use it in GitHub Desktop.
Save SmugZombie/12f7445a97b544b962278071ded8ce57 to your computer and use it in GitHub Desktop.
OneDirectoryUp(path){
parts := StrSplit(path, "\")
result := ""
Loop % parts.MaxIndex() - 1
{
if(StrLen(result)) {
result .= "\"
}
result .= parts[A_Index]
}
result = %result%\
return result
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment