Especificando o caminho de pesquisa para operações de "carga" no ghci

EmCarregando arquivos de origem ele informa que o caminho de busca para localizar arquivos de origem é especificado com a opção -i:

ghci -idir1:...:dirn

Isso significa que quando alguém executa:

:load test.hs

então ghci procura nos diretórios acima para test.hs? Eu vi a resposta emProblema ao especificar o diretório de origem para o GHC mas ainda não estou claro sobre isso.

Por exemplo, no Windows XP eu coloquei test.hs em:

C:\Documents and Settings\winuser\My Documents

e depois correu:

ghci -iC:\Documents and Settings\winuser\My Documents

No entanto ao fazer:load test.hsghci reclamou sobre não ser capaz de encontrar o arquivo.

[EDIT 1]

Eu quero evitar usar:cd porque descarrega todos os módulos carregados, o que me impede de carregar arquivos de vários locais

[EDIT 2: resposta ao jozefg]

--C:\A\A.hs
module A where
myaddA::Int->Int->Int
myaddA x y = x+y

--C:\B\B.hs
module B where
myaddB::Int->Int->Int
myaddB x y = x+y

Então eu posso fazer o seguinte:

Prelude> :cd C:\A
Prelude> :load A
[1 of 1] Compiling A                ( A.hs, interpreted )
Ok, modules loaded: A.
*A> myaddA 2 3
5
*A> :cd C:\B
Warning: changing directory causes all loaded modules to be unloaded,
because the search path has changed.
Prelude> :load B
[1 of 1] Compiling B                ( B.hs, interpreted )
Ok, modules loaded: B.
*B> myaddB 3 4
7

No entanto, não encontrei uma maneira de disponibilizar simultaneamente os módulos A e B quando os módulos são armazenados em arquivos em locais diferentes

[EDIT 3: resposta ao jozefg]

>ls
temp  temp2
>more temp/A.hs
module A where
addA = (+)
>more temp2/B.hs
module B where
addB = (+)
>cd temp
>ghci -i../temp2
GHCi, version 7.6.3: http://www.haskell.org/ghc/  :? for help
Loading package ghc-prim ... linking ... done.
Loading package integer-gmp ... linking ... done.
Loading package base ... linking ... done.
Prelude> import A B

<interactive>:1:10: parse error on input `B'

[EDIT 4: resposta ao jozefg]

>ls
temp  temp2
>more temp/A.hs
module A where
addA = (+)
>more temp2/B.hs
module B where
addB = (+)
>cd temp
>ghci -i../temp2
GHCi, version 7.6.3: http://www.haskell.org/ghc/  :? for help
Loading package ghc-prim ... linking ... done.
Loading package integer-gmp ... linking ... done.
Loading package base ... linking ... done.
Prelude> import A

<no location info>:
    Could not find module `A'
    It is not a module in the current program, or in any known package.
Prelude> import B

<no location info>:
    Could not find module `B'
    It is not a module in the current program, or in any known package.

questionAnswers(2)

yourAnswerToTheQuestion