/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
- bsh.help.cd = "usage: cd( path )";
- /*
- Additions by Kevin Raulerson, http://www.spin.com.mx/~kevinr/
- */
- cd( String pathname ) {
- file = pathToFile( pathname );
- if ( file.exists() && file.isDirectory() )
- bsh.cwd = file.getCanonicalPath();
- else
- print( "No such directory: "+pathname);
- }