これを行うC#アプリケーションを実行したい:
- フォルダを選択します
- そのフォルダからそのフォルダにすべてのファイルをコピーします+/results /
非常に単純ですが、機能させることができません。
これが私のコードです:
string[] files = Directory.GetFiles(folderBrowserDialog1.SelectedPath);
foreach (string file in files)
{
MessageBox.Show(Path.GetFullPath(file));
//string path=Path.Combine(Path.GetFullPath(file), "results");
//MessageBox.Show(path);
string path2 = Path.GetDirectoryName(file);
path2 = Path.Combine(Path.GetDirectoryName(file), @"results\");
path2 = Path.Combine(path2, file);
MessageBox.Show(path2);
}