PageRenderTime 45ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/jEdit/tags/jedit-4-2-pre4/bsh/commands/mv.bsh

#
Unknown | 13 lines | 10 code | 3 blank | 0 comment | 0 complexity | dabe4883a7de1c2a242777848c5de5ab MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  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. }