/jEdit/tags/jedit-4-1-pre7/bsh/commands/cd.bsh
# · Unknown · 20 lines · 14 code · 6 blank · 0 comment · 0 complexity · 906a5be6163c7189826e9f25f68652f5 MD5 · raw file
- /**
- Change working directory for dir(), etc. commands (like Unix cd)
- */
- bsh.help.cd = "usage: cd( path )";
- /*
- Additions by Kevin Raulerson, http://www.spin.com.mx/~kevinr/
- */
- void cd( String pathname ) {
- file = pathToFile( pathname );
- if ( file.exists() && file.isDirectory() )
- bsh.cwd = file.getCanonicalPath();
- else
- print( "No such directory: "+pathname);
- }