Tagged Questions

6
votes
7answers
1k views

How can I create a temporary file for writing in C++ on a Linux platform?

In C++, on Linux, how can I write a function to return a temporary filename that I can then open for writing? The filename should be as unique as possible, so that another process …
3
votes
5answers
1k views

How do I automatically delete tempfiles in c#?

Hello all. What are a good way to ensure that a tempfile is deleted if my application closes or crashes? Ideally I would like to obtain a tempfile, use it and then forget about it. …
2
votes
5answers
546 views

Removing created temp files in unexpected bash exit

I am creating temporary files from a bash script. I am deleting them at the end of the processing, but since the script is running for quite a long time, if I kill it or simply CTR …
2
votes
3answers
304 views

On Linux, is the command-line program mktemp less safe than the C-function mkstemp?

Both operations create an empty file and return the filename but mkstemp leaves the file open in exclusive mode and gives you the handle. Is there a safety benefit to the C-functi …
2
votes
2answers
502 views

How do I save a NamedTemporaryFile into a model FileField in Django?

I created a NamedTemporaryFile, added some content in it and now I want to save it into a model FileField. The problem is that I get a SuspiciousOperation because the tmp directo …
2
votes
4answers
803 views

Python - How do I convert “an OS-level handle to an open file” to a file object?

tempfile.mkstemp() returns "a tuple containing an OS-level handle to an open file (as would be returned by os.open()) and the absolute pathname of that file, in that order." How d …
2
votes
4answers
565 views

How do I persist to disk a temporary file using Python?

I am attempting to use the 'tempfile' module for manipulating and creating text files. Once the file is ready I want to save it to disk. I thought it would be as simple as using 's …
1
vote
1answer
37 views

JRuby - Tempfile.rb

Hey, Does anyone know how tempfile.rb is handled in JRuby. It is in Ruby but not in JRuby. Anyone got anyideas? Cheers Eef
1
vote
1answer
51 views

Is there an easy way to use a python tempfile in a shelve (and make sure it cleans itself up)?

Basically, I want an infinite size (more accurately, hard-drive rather than memory bound) dict in a python program I'm writing. It seems like the tempfile and shelve modules are na …
0
votes
3answers
55 views

Why is the WindowsError while deleting the temporary file?

I have created a temporary file. Added some data to the file created. Saved it and then trying to delete it. But I am getting WindowsError. I have closed the file after editi …
0
votes
2answers
83 views

How do I force the browser to get an updated PDF file generated from an SSRS report?

I have a web page that downloads a pdf version of an ssrs report through a link. However when I make changes to the data, the browser pulls up the same pdf file as before without t …
0
votes
3answers
120 views

Windows programming application and writing temporary files

I am writing an app that may have in its memory quite a bit of data. I dont want to write the data to disk ad hoc because there may be more data to write, I could append the data, …
0
votes
2answers
337 views

How to delete the temporary files automatically in ruby-rails?

Hi, My Rails app has to process and generate PDF XFA files and send to the user/browser. Its working fine. But the issue is that before sending the file to the user, it creates 2 …
0
votes
6answers
514 views

In Python, how do I make a temp file that persists until the next run?

I need to create a folder that I use only once, but need to have it exist until the next run. It seems like I should be using the tmp_file module in the standard library, but I'm n …