PageRenderTime 29ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
Unknown | 20 lines | 14 code | 6 blank | 0 comment | 0 complexity | 906a5be6163c7189826e9f25f68652f5 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. /**
  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. }