ファイル名を変更するには
Java / Scala 2014/10/09
Java/Scalaでの例
import java.io.File;
if (! new File(oldName).renameTo(new File(newName))) {
throw new IOException();
}
Signature:
Ruby 2015/08/22
File.rename('foo.txt', 'bar.txt')
または
require 'fileutils'
FileUtils.mv('foo.txt', 'bar.txt')
Perl 2015/08/21
rename
という関数でリネームできる。
rename($oldName, $newName);
rename
関数 | perldoc.jp
http://perldoc.jp/func/rename
sh (シェルスクリプト) 2016/09/14
mv
コマンドを使う。
$ mv foo.txt bar.txt