The Answer:
To see current working directory within Sql*Plus command line:
host echo %CD%
To change directories:
host cd c:\go\toyour\directory
Long story:
the command 'host' in sql*plus let's you perform calls to the shell/command line of the operating system that you are using. In this case I am using windows, so instead of using the handy pwd, I had to use the clunky echo %CD%. Style aside, it works.
Thanks, shoover at stackoverflow for the quick answer to this question :)
http://stackoverflow.com/questions/1840816/sql-plus-how-to-change-direct...