Chdir

(chdir string) -> #f

Changes the current working directory to the path described in string.

Examples:

>> (getcwd)
:: "/Users/ericjordan"
>> (chdir "mosvm")
:: #f
>> (getcwd)
:: "/Users/ericjordan/mosvm"
>> (chdir "..")
:: #f
>> (getcwd)
:: "/Users/ericjordan"

See Also: getcwd