问题描述
我想copy目錄下指定文件到目的目錄,如:在A目錄下所有命名為:TEXT的文件都要copy到另一個目錄B
解决方案
解决方案二:
System.IO.File.Copy(@"C:Text.txt",@"D:text.txt",true);
解决方案三:
System.IO.File
解决方案四:
System.IO.DirectoryInfo_SourceDirect=newSystem.IO.DirectoryInfo(@"C:A";);System.IO.DirectoryInfo_PurposeDirect=newSystem.IO.DirectoryInfo(@"C:B");System.IO.FileInfo[]_FileList=_SourceDirect.GetFiles();for(inti=0;i!=_FileList.Length;i++){if(_FileList[i].Name.ToUpper().IndexOf("Text")==0)//条件你可以自己改{System.IO.File.Copy(_FileList[i].FullName,_PurposeDirect+"\"+_FileList[i].Name);}}
解决方案五:
publicvoidCopyFile(stringpath,stringnewPath){string[]files=Directory.GetFiles(path);for(inti=0;i<files.Length;i++){FileInfofi=newFileInfo(files[i]);if(fi.Extension.ToLower()==".text"){File.Copy(fi.FullName,newPath+"\"+fi.Name);}}}
解决方案六:
System.IO.DirectoryInfo_SourceDirect=newSystem.IO.DirectoryInfo(@"C:A";);System.IO.DirectoryInfo_PurposeDirect=newSystem.IO.DirectoryInfo(@"C:B");System.IO.FileInfo[]_FileList=_SourceDirect.GetFiles();for(inti=0;i!=_FileList.Length;i++){if(_FileList[i].Name.ToUpper().IndexOf("Text")==0)//条件你可以自己改{System.IO.File.Copy(_FileList[i].FullName,_PurposeDirect+"\"+_FileList[i].Name);}}
解决方案七:
copy都沒有執行啊