/jEdit/tags/jedit-4-2-pre4/bsh/commands/cd.bsh

# · Unknown · 19 lines · 15 code · 4 blank · 0 comment · 0 complexity · df823e5efaae63578c5cab2ab03ae594 MD5 · raw file

  1. /**
  2. Change working directory for dir(), etc. commands (like Unix cd)
  3. */
  4. bsh.help.cd = "usage: cd( path )";
  5. /*
  6. Additions by Kevin Raulerson, http://www.spin.com.mx/~kevinr/
  7. */
  8. void cd( String pathname )
  9. {
  10. this.file = pathToFile( pathname );
  11. if ( file.exists() && file.isDirectory() )
  12. bsh.cwd = file.getCanonicalPath();
  13. else
  14. print( "No such directory: "+pathname);
  15. }