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
/
rm.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-26
|
344 b
|
21 lines
/**
Remove a file (like Unix rm).
*/
bsh.help.rm = "usage: cd( path )";
void rm( String pathname ) {
file = pathToFile( pathname );
if ( file == null )
throw new java.io.FileNotFoundException("pathname");
if ( file.isDirectory() ) {
print( pathname + "is a directory" );
return;
}
return file.delete();
}