File.Delete Access to the path is denied

前端 未结 5 924
无人共我
无人共我 2021-01-18 05:26

My console application program is creating some runtime files while it is working so what I want to do is delete all of these files on the application startup. I have tried

5条回答
  •  天涯浪人
    2021-01-18 06:02

    if (File.Exists(filePath))
    {
        File.SetAttributes(filePath, FileAttributes.Normal);
        File.Delete(filePath);
    }
    

提交回复
热议问题