/jEdit/tags/jedit-4-1-pre7/bsh/commands/cd.bsh

# · Unknown · 20 lines · 14 code · 6 blank · 0 comment · 0 complexity · 906a5be6163c7189826e9f25f68652f5 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. file = pathToFile( pathname );
  10. if ( file.exists() && file.isDirectory() )
  11. bsh.cwd = file.getCanonicalPath();
  12. else
  13. print( "No such directory: "+pathname);
  14. }