/jEdit/tags/jedit-4-3-pre2/bsh/commands/mv.bsh

# · Unknown · 13 lines · 10 code · 3 blank · 0 comment · 0 complexity · dabe4883a7de1c2a242777848c5de5ab MD5 · raw file

  1. /**
  2. Rename a file (like Unix mv).
  3. */
  4. bsh.help.mv = "usage: mv( fromFile, toFile )";
  5. mv( String fromFile, String toFile )
  6. {
  7. this.from = pathToFile( fromFile );
  8. this.to = pathToFile( toFile );
  9. from.renameTo( to );
  10. }