home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 April
/
CMCD0404.ISO
/
Software
/
Shareware
/
Comunicatii
/
advwebrank
/
awr.msi
/
disk1.cab
/
bsh_1.2b6.jar
/
bsh
/
commands
/
cd.bsh
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
2002-05-24
|
384 b
|
21 lines
/**
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);
}