file クラス : MoveTo(string) メソッド

説明

ファイルを新しい場所に移動します。

構文

fileInstance.MoveTo(string path)

引数

クラス名前説明
stringpath新しい場所のパス。

返り値

無し。

サンプルコード

1:

file f = new file("c:\somewhere...");

2:

f.MoveTo("c:\newlocation...");

注意

これは、System.IO.FileInfo.MoveTo(String) メソッドのラッパーです。

場所の移動だけでなく、新しいファイル名の指定にも使用できます。

参照リンク

Copyright © Cooker All rights reserved.