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

説明

ファイルをコピーします。

構文

fileInstance.CopyTo(string path)

引数

クラス名前説明
stringpathファイルのパス。

返り値

クラス説明
fileファイルを表すインスタンス。

サンプルコード

1:

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

2:

file newFile = f.CopyTo("c:\newpath...");

注意

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

コピー先のファイルが存在したら例外を発生します。

参照リンク

Copyright © Cooker All rights reserved.