File.Delete Access to the path is denied

前端 未结 5 925
无人共我
无人共我 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条回答
  •  梦毁少年i
    2021-01-18 06:06

    Using Windows API MoveFileEx might be a potential solution with a parameter MOVEFILE_DELAY_UNTIL_REBOOT to remove the file only after reboot.

    Please check http://msdn.microsoft.com/en-us/library/aa365240%28v=vs.85%29.aspx.

提交回复
热议问题