/jEdit/tags/jedit-4-0-pre3/bsh/commands/cd.bsh

# · Unknown · 17 lines · 11 code · 6 blank · 0 comment · 0 complexity · e27b7d0478e4001567ba5b2b11a5b5ca MD5 · raw file

  1. bsh.help.cd = "usage: cd( path )";
  2. /*
  3. Additions by Kevin Raulerson, http://www.spin.com.mx/~kevinr/
  4. */
  5. cd( String pathname ) {
  6. file = pathToFile( pathname );
  7. if ( file.exists() && file.isDirectory() )
  8. bsh.cwd = file.getCanonicalPath();
  9. else
  10. print( "No such directory: "+pathname);
  11. }