In my form I store/create a commandline arguments inside a var to use it later with a control button, to launch a external app with that arguments stored inside my var, and the var contents is a tring like this:
ExternalAPP.exe "Argument 1" "argument 2" "argument 3" "more arguments"
PS: The arguments are references to folder paths.
And what i need to do is split the var to get all the folder paths (arguments), and make something like this:
' Pseudocode
For each folder in var.split(ControlChars.Quote)
for each file in get.folder.files
appendline.(new_text_file, file.Name)
Next
Thanks if somebody helps me
UPDATE:
the content of the VAR that i need to split is exactly this:
“F:-=Temporal=-\Documentos\DVD Temazos\Rock”
“F:-=Temporal=-\Documentos\DVD Temazos\Techno”
“F:-=Temporal=-\Documentos\DVD Temazos\Pop”
*NOTICE THAT THE FORUM DOES NOT PASTED THE SLASH \ AFTER DRIVE LETTER F:*
You should try something like this:
EDIT:
I just noticed this in your question: