请告诉我为什么 file.Delete(gpath) 不起作用?
我将非常感谢你 :) 如果此代码有任何错误,请告知该错误。此代码可能是错误的,所以请告诉我。
string gpath;
string path=@"c:\Users\Adam\Desktop\";
string name="file";
string f="";
int i=0;
string ext=".txt";
while(File.Exists(path + name + f + ext))
{
i++;
f = i.ToString();
}
gpath = path + name + f + ext;
button2.Enabled = true;
File.Create(gpath);
File.Delete(gpath);//why there is an Error??