Windows temporary files behaviour - are they deleted by the system?

前端 未结 7 2114
广开言路
广开言路 2020-12-15 03:28

Using the .net framework you have the option to create temporary files with

Path.GetTempFileName(); 

The MSDN doesn\'t tell us what happens

7条回答
  •  囚心锁ツ
    2020-12-15 03:45

    No, it lies in the responsibility of the software (read: the developer) that creates a temporary file to dispose of it.

    Have a look in your own temp folder to see how well that works ;-)

提交回复
热议问题