を仕事を得ることができない、それだけでは動作しません。File.Copyこれは、別のファイルの場所で、マイクロソフトからのコードサンプルで
string fileName = "test1.txt";
string sourcePath = @"C:\";
string targetPath = @"C:\Test\";
// Use Path class to manipulate file and directory paths.
string sourceFile = System.IO.Path.Combine(sourcePath, fileName);
string destFile = System.IO.Path.Combine(targetPath, fileName);
System.IO.File.Copy(sourceFile, destFile, true);
それはソースを見つけることができませんファイル。私はブレークポイントを設定した場合、これは私が得るものです:
args {string[0]} string[]
fileName "test1.txt" string
sourcePath "C:\\" string
targetPath "C:\\Test\\" string
sourceFile "C:\\test1.txt" string
destFile "C:\\Test\\test1.txt" string
そのまま文字列が使用されているにもかかわらず、バックスラッシュを倍増さのようなので、それが見えます。 (私はtest1.txtファイルをC言語で持っていることは間違いありません:)ありがとう!
例外メッセージとスタックトレースとは何ですか? – SLaks
バックスラッシュの倍増は表示用です。どのようなエラーメッセージが表示されますか? –
例外テキストを投稿してください。ダブルバックスラッシュは問題ありません。 – Matten