With chezscheme to load files within the current directory all-codes
(load "ch4-mceval.scm")
However, if change directory to the parent-dir and try:
(load "all-codes/ch4-mceval.scm")
Exception in load: failed for all-codes/ch4-mceval.scm: no such file or directory:
My directory displays like
$ tree -L 2
.
├── 00.elisp-SICP.org
├── 00.preface.org
├── 01.building-abstrations-with-procedures.org
├── 02.building-abstrations-with-data.org
├── 03.modularity-objects-and-states.org
├── 04.metalinguistic-abstration.org
├── 05.computing-with-register-machines.org
├── all-codes
│ ├── ch1.scm
│ ├── ch2.scm
│ ├── ch2support.scm
│ ├── ch2tests.scm
│ ├── ch3.scm
How could I load the scm codes from 'all-codes' with the current level?