我再次需要你的帮助:)
public partial class Form1 : Form
{
const string v_datoteko = @"\\Cartman-pc\k\test"; // prenese v katero koli mapo le, da imaš dovoljenje!
const string iz_datoteke = @".\posnetki07"; // mora biti v isti mapi kot .exe!( primer: posnetki s v c:\ program mora biti v c:\ ne v mapi. !
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
DirectoryInfo dir = new DirectoryInfo(iz_datoteke);
if (!dir.Exists)
{
throw new Exception("Mapa ne obstaja: " + iz_datoteke);
}
if (!Directory.Exists(v_datoteko))
{
Directory.CreateDirectory(v_datoteko);
}
FileInfo[] files = dir.GetFiles();
foreach (FileInfo file in files)
{
string temppath = Path.Combine(v_datoteko, file.Name);
file.CopyTo(temppath);
}
}
程序正常工作,直到我想复制文件,已经在文件夹中然后我收到错误。所以我知道我需要做一些像
这样的事情//if ( File.Exists( path ) )
File.Move( path, path + ".old" );
但我是c#的新手,我不知道放在哪里。 :)所以thx的帮助
答案 0 :(得分:1)
你只需要做
file.CopyTo(temppath, false);
是否覆盖的第二个参数。你可以把它作为假,因为你只需要复制文件就可以了。
如果您需要覆盖,请将其设置为true。
FileInfo.CopyTo Method (String, Boolean)
如果您需要使用新名称复制文件(如果文件存在)
temppath = File.Exists(temppath)? temppath+ ".old":temppath;
File.CopyTo(temppath);
答案 1 :(得分:1)
将文件路径检查放在file.CopyTo(temppath);
之前if(File.Exists(temppath))
{
File.Move( temppath, temppath+ ".old" );
// instead of "old" use something unique such as timestamp
}
file.CopyTo(temppath);
答案 2 :(得分:0)
foreach (FileInfo file in files)
{
string temppath = Path.Combine(v_datoteko, file.Name);
if(File.Exists(temppath))
file.CopyTo(Path.Combine(v_datoteko, file.Name + ".old");
else
file.CopyTo(temppath);
}
答案 3 :(得分:0)
file.CopyTo(temppath);
左右:
if (!temppath.exists){
file.CopyTo(temppath);
}
此外,您可以捕获错误,并在最后生成错误列表提及未复制的文件:)