//需要先判定一下文件夹是否存在,不存在则创建文件夹
String Fname=Dir+"//"+"分组_1";
if (!DirectoryExists(Fname))
{
if (!CreateDir(Fname))
//throw Exception("Cannot create "+Fname);
CreateDir(Fname);//文件夹不存在则创建
}
//复制文件操作
String Copyfy= ListView1->Items->Item[i]->SubItems->Strings[2];
CopyFile(Copyfy.c_str(),String(Fname+"//"+ExtractFileName(Copyfy)).c_str(),false );