/jEdit/tags/jedit-4-1-pre5/bsh/commands/rm.bsh
# · Unknown · 20 lines · 14 code · 6 blank · 0 comment · 0 complexity · 85ad2f687e6c15fb6c647845c3a09388 MD5 · raw file
- /**
- Remove the 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();
- }