This Web
Other Webs
Schematics
Scheme Links
explode-path
file.ss
> (explode-path "C:\\winnt\\system32\\drivers\\etc") ("C:\\" "winnt" "system32" "drivers" "etc")
normalize-path
> (current-directory) "C:\\Program Files\\PLT" > (explode-path "..\\..\\winnt\\system32\\drivers\\etc") explode-path: expects argument of type <path in normal form>; given "..\\..\\winnt\\system32\\drivers\\etc" > (explode-path (normalize-path "..\\..\\winnt\\system32\\drivers\\etc")) ("C:\\" "winnt" "system32" "drivers" "etc")