Question: Why can't I read or save files?

I am using Windows 64 bit Maple 14.

I am trying to read a package (stochastic9) stored in a text file, stochastic9.txt in the directory: 

C:\Program Files\Maple 14

I can't read this or ANY file from ANY directory. Nor can I save ANY object to ANY directory. Here are some sample entries and error messages:

> currentdir();
"C:\Program Files\Maple 14" <--just to substantiate what the current directory was
> read "C:\Program Files\Maple 14\stochastic9.txt";
Error, unable to read `C:Program FilesMaple 14stochastic9.txt` <--notice directory is misspelled by Maple
 
AS I SAID I CANNOT SAVE EITHER:
> testfunction := (x+y)^2;
> save testfunction, "C:\Program Files\Maple 14\testfunction.txt";
Error, could not save into `C:Program FilesMaple 14estfunction.txt` <--directory again misspelled

> save testfunction, "testfunction.txt";
Error, could not save into `testfunction.txt`
> save testfunction, "testfunction.m";                    <-- problem not dependent on extension
Error, could not open `testfunction.m` for writing
THIS NEXT COMMAND IS STRAIGHT FROM THE HELP
> a := (x+y)^2;
2
(x + y)
> b := x;
x
> c := y;
y

> save a, b, c, "temp.m";
Error, could not open `temp.m` for writing
Please Wait...