Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
5answers
7k views

How do I automatically delete tempfiles in c#?

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. Right now I keep a list of ...
11
votes
6answers
3k 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 CTRL-C during the run, ...
8
votes
5answers
3k 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 do I convert that ...
7
votes
7answers
4k 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 using the same ...
5
votes
5answers
439 views

Python tempfile module and threads aren't playing nice; what am I doing wrong?

I'm having an interesting problem with threads and the tempfile module in Python. Something doesn't appear to be getting cleaned up until the threads exit, and I'm running against an open file limit. ...
4
votes
2answers
134 views

Python tempfile: broken or am I doing it wrong?

For a small python script I would like to use a temporary file with the tempfile module. Somehow it does not give the expected behavior and I don't know what I am doing wrong or if this is a bug: ...
4
votes
1answer
140 views

Why is tempfile using DOS 8.3 directory names on my XP box?

>>> import tempfile >>> tempfile.mkstemp() (3, 'c:\\docume~1\\k0811260\\locals~1\\temp\\tmpk6tpd3') It works, but looks a bit strange. and the actual temporary file name is more ...
3
votes
2answers
228 views

Python: differences between tempfile.mkdtemp and tempfile.TemporaryDirectory

I need to create a temp directory that will house another named directory and subfiles. In the end the named directory and subfiles will be appended to a tarball and the temp directory can be removed. ...
3
votes
2answers
1k 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 directory is not within the ...
3
votes
4answers
3k 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 'shutil.copy'. ...
2
votes
1answer
187 views

creating a temporary file in python with FUSE

I am trying to write a program using python-fuse, but I can't get file writing down. my file_class looks like this class FuseFile(object): def __init__(self, path, flags, *mode): debug(path) ...
2
votes
3answers
152 views

Create a tempfile without opening it in Ruby

Is there a way to create a tempfile, without having it opened? I have to run an executable, redirect it's output to a file, and then read & parse that. Everything created by tempfile is already ...
2
votes
1answer
387 views

Is this usage of python tempfile.NamedTemporaryFile secure?

Is this usage of Python tempfile.NamedTemporaryFile secure (i.e. devoid security issues of deprecated tempfile.mktemp)? def mktemp2(): """Create and close an empty temporary file. Return the ...
2
votes
1answer
212 views

JRuby - Tempfile.rb

Does anyone know how tempfile.rb is handled in JRuby. It is in Ruby but not in JRuby. Anyone got anyideas? Cheers Eef
2
votes
3answers
817 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-function? Does this imply ...
1
vote
3answers
33 views

Working with tempfiles in Ruby

I would like to open a tempfile in user's editor ($EDITOR), let the user to write text there, and once he closes this file to use its contents somehow (e.g. inject in another file). What would be the ...
1
vote
3answers
58 views

Please suggest a way to store a temp file in Windows Azure

Here I have a simple feature on ASP.NET MVC3 which host on Azure. 1st step: user upload a picture 2nd step: user crop the uploaded picture 3rd: system save the cropped picture, delete the temp file ...
1
vote
2answers
65 views

renameTo() not work in eclipse Helios

This is a simple class to show 4 cases. Sorry for my english (is bad) public static void main(String[] args) throws IOException { //TODO De temporal a archivo en directorio //TODO from file ...
1
vote
1answer
61 views

Read data from newly written TempFile doesn't work? IOerror closed stream in Ruby on Rails

I am implementing in Ruby on Rails, and i have 2 views. In my first view i read in a file and show the first rows (this works fine), then in my second view ( in the method in the controller ) i write ...
1
vote
0answers
71 views

How to create a simple virtual filesystem on google app engine blobstore using python?

There is a Java version GAEVFS which seems quite effective but also complicated. And a Python vfs collection at http://code.google.com/p/pyfilesystem/ which is not designed for GAE. Google locked ...
1
vote
1answer
96 views

How to filter word temp file

Right now, I'm developing a winform system.I want to filter word temp file or temp filename.When someone open a word file ,in my system he will see the temp file . And then doing some operation with ...
1
vote
0answers
86 views

ASP.NET Temporary File Error

I am having a problem when I register using the registration wizard then go to the next step fill out profile data like firstname lastname etc and click continue I get the following error: Exception ...
1
vote
1answer
1k views

how to use tempfile.NamedTemporaryFile() in python

I want to use tempfile.NamedTemporaryFile() to write some contents into it and then open that file. I have written following code: tf = tempfile.NamedTemporaryFile() tfName = tf.name tf.seek(0) ...
1
vote
1answer
52 views

Temp Filename on specific partition?

I know about Path.GetTempFileName() and how to get the temp folder (usually its on your C drive) But how do i get a temp filename on a specific partition? i think as a workaround i'll do something ...
1
vote
1answer
179 views

CGI — Temporary files

I'm developing a little CGI application (in C, with CGIC, http://www.boutell.com/cgic/). My application needs to create a temporary file (the user upload an images, it is saved, modified in various ...
1
vote
1answer
194 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 naturally suited for ...
1
vote
2answers
1k views

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

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 files in the rails tmp ...
0
votes
2answers
47 views

Create a temp file with a specific extension using php

How do I create a temporary file with a specified extension in php. I came across tempnam() but using it the extension can't be specified.
0
votes
2answers
19 views

Using tempfile to create a sub-directory for all of my tempfiles

I've been using tempfile.mkdtemp with a prefix to create my temp files. This results in a lot of different directory in my tmp folder with 'tmp/myprefix{uniq-string}/'. I would like to change this ...
0
votes
2answers
66 views

Downloading a file into memory

I am writing a python script and I just need the second line of a series of very small text files. I would like to extract this without saving the file to my harddrive as I currently do. I have ...
0
votes
2answers
13 views

How do i store a file for proccessing in asp.net

Path.GetTempFileName is pretty close to what i want. But i wouldnt want to restart the machine and lose these files (as they would be temp). What i need is a unique filename. Whats the best way to do ...
0
votes
1answer
107 views

pdftk, tempfile and rails

Ok, I've tried all kinds of stuff and I'm not entirely sure this will work. The pdfs I need to merge are on the server and the links to them are hardcoded. pdftk works locally in my terminal, but not ...
0
votes
4answers
416 views

python temporary files

I have this code: import tempfile def tmp_me(): tmp = tempfile.NamedTemporaryFile() tmp1 = tempfile.NamedTemporaryFile() lst = [tmp.name, tmp1.name] return lst def exit_dialog(): ...
0
votes
1answer
307 views

php - Create file from string and attach to email

I have an application in which users can send me feedback. When they do this, various data from their system is posted to a php file on my server. The php file then handles that data and sends me an ...
0
votes
1answer
247 views

rails3, confused about using params[:filename].tempfile.path vs params[:filename][:tempfile].path

On a Rails 3 app hosted at Heroku, where a multipart file is POSTed to my app, I'm trying to use some sample code that says : File.open(params['filename'][:tempfile].path) however, my logs show the ...
0
votes
1answer
477 views

rails send_file and send_data sends out zero byte files

I'm trying to send a pdf back to the user but I'm having serious problem getting send_file and send_data to work. I created the pdf file as follows: tmp = Tempfile.new('filled') new_tmp_path = ...
0
votes
2answers
337 views

Windows-Installer: How to unpack application into TempFolder, run it and delete it?

I have own installation procedure InstallInit.exe. I need to include it into MSI installer, so the windows-installer will: Unpack my InstallInit.exe into Temp Folder Launch [Temp ...
0
votes
1answer
118 views

How to save a temporarily jpg file by using python?

Hey I need to save a temporarily jpg file and then remove it, is there any better way to do? I tested the tempfile, but looks that doesn't work.
0
votes
1answer
304 views

What folder does Path::GetTempFileName Method save to?

I need to get the temp file to see what happened because the actual file is never output. However, I can't seem to find where the temp file is created. I need to find this out without writing code or ...
0
votes
2answers
47 views

XML Retrieval - through function calls or temp files?

We are creating an application for a client's website. The website will make a function call to our application to generate XML data. The web service then must retrieve this data. Would it be best ...
0
votes
2answers
186 views

php: Grabbing stdout output data from cli tools?

Is it possible to grab the stdout output data from command line tools in php? Example: I want to upload a dynamically server-created mix of audio files to the client. The SOX tool lets me mix the ...
0
votes
3answers
454 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 editing it. How do I ...
0
votes
2answers
380 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 the updated ...
0
votes
3answers
286 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, but I dont want to ...
0
votes
7answers
2k 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 not sure how to get ...