在 C# 中,我需要知道如何在checkListBox
文件路径中使用项目名称,以便用户可以选择文件名,然后单击一个按钮,将这些文件移动到 pc 上的另一个文件位置。我已经知道如何让文件出现在 中,checkListBox
但我不知道如何在 中检测文件路径,checkListBox
以便用户可以移动checkListBox
.
如果有帮助,这是一种更好的表达方式。我想在列表框中获取列出的文件,并对它们做一些事情。
void sendbtn_Click(object sender, EventArgs e)
{
string destinationFolder = gamedir.Text;
string[] files = Directory.GetFiles(checkListView1.SelectedItems);
foreach(var file in files)
{
string destinationPath = Path.Combine(destinationFolder, file);
File.Copy(file.Fullname, destinationPath);
}
}