PageRenderTime 37ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/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
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  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. }