0

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??
4

1 に答える 1