PageRenderTime 42ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/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
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. {
  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. }