8

I am using tempfile.TemporaryFile for some intermediate processing. The program nicely removes the temp file for me when it closes, which is precisely the behaviour that I want the majority of the time. But is there a way to save the file for examination in the event of a (trapped) error or other abnormal circumstance?

djvg
  • 11,722
  • 5
  • 72
  • 103
TimothyAWiseman
  • 14,385
  • 12
  • 40
  • 47

2 Answers2

8

Seek to the beginning and use shutil.copyfileobj() to copy the data to a file you create.

Ignacio Vazquez-Abrams
  • 776,304
  • 153
  • 1,341
  • 1,358
3

Use tempfile.mkstemp(). According to the documentation:

Unlike TemporaryFile(), the user of mkstemp() is responsible for deleting the temporary file when done with it.

Read more here.

dhg
  • 52,383
  • 8
  • 123
  • 144