Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
10answers
856 views

Storing PHP(/PHP-FPM/Apache)'s temporary-from-upload files in RAM rather than the filesystem (or encrypted only)?

Thread overview I can unfortunately only accept one answer - but to anyone reading this, the entire thread is extremely valuable and contains the collective insights of many people. Depending on what ...
25
votes
11answers
11k views

How can I create a temp file with a specific extension with .net?

I need to generate a unique temporary file with a .csv extension. What I do right now is string filename = System.IO.Path.GetTempFileName().Replace(".tmp", ".csv"); However, this doesn't ...
21
votes
2answers
6k views

ReflectedSchemas folder in the user's AppData folder (Visual Studio)

Today I ran WinDirStat to check what is filling up my harddisk. I was surprised to see that this folder contains 4.6 GB (!): C:\Users\...\AppData\Roaming\Microsoft\VisualStudio\9.0\ReflectedSchemas ...
17
votes
4answers
9k views

how to prevent vim from creating (and leaving) temporary files?

Why does vim create <filename>~ files? Is there a way to disable that? If it's for backup (or something), thanks but no thanks, I use git so I don't need your silly backup. Also, these ...
11
votes
4answers
1k views

Creating temporary files in Android

What's the best way to create a temporary file in Android? Can File.createTempFile be used? The documentation is very vague about it. In particular, it's not clear when temporary files created with ...
10
votes
5answers
2k views

git ignore vim temporary files

What is the correct way to make git ignore temporary files produced by vim in all directories (either globally across the system or locally for a single project)?
10
votes
4answers
682 views

How can I create a ramdisk in Python?

I want to create a ramdisk in Python. I want to be able to do this in a cross-platform way, so it'll work on Windows XP-to-7, Mac, and Linux. I want to be able to read/write to the ramdisk like it's a ...
10
votes
6answers
8k views

How can I unlock a file that is locked by a process in .NET

I want my application to clean all the temp files it used, the problem is that not all the temp files are under my control, so I just want to "brutally" unlock them in order to delete them ...
8
votes
2answers
3k views

Rails - Creating temp files in a portable way

My rails application runs on a Ubuntu server machine. I need to create temporary files in order to "feed" them to a second, independent app (I'll be using rake tasks for this, in case this ...
7
votes
7answers
2k views

Deleting Temporary Files after usage

I need to work with some temporary files in my Windows Forms .NET 3.5 application. Those files are opened in an external application that can of course be running for a longer time than my own ...
6
votes
2answers
268 views

Cleaning ReSharper's TestResults files?

I'm using ReSharper 4.5 to execute my MSTest unit tests in VS2008. With each test run, it's creating files in this path: testProjectFolder\bin\Debug\TestResults How can I clean/delete those files ...
6
votes
5answers
2k views

PHP temp file names for uploads colliding

When a user uploads a file, randomly it gets replaced by another user's upload, I've finally tracked down the issue to PHP and the tmp file name being reused. Is there a way to fix this? Is there a ...
6
votes
2answers
2k views

Eliminating temporary ASP.Net Files

How do you prevent ASP.NET from creating too many temporary files? My website creates gigabytes of temporary files, and that overflows the main partition on the server. How do I prevent this from ...
6
votes
4answers
542 views

Virus scanners locking and deleting temporary files - best way to cope with them?

My application deals with e-mails coming from different sources, e.g. Outlook and IMAP mailboxes. Before parsing them, I write them to the temporary directory (keeping them in memory is not an ...
5
votes
2answers
215 views

Python: How do I make temporary files in my test suite?

(I'm using Python 2.6 and nose.) I'm writing tests for my Python app. I want one test to open a new file, close it, and then delete it. Naturally, I prefer that this will happen inside a temporary ...
5
votes
3answers
613 views

Are files in the temporary folder automatically deleted?

If I create some file using Path.GetTempPath() - does it automatically get deleted at some stage, or is it up to me to delete it?
5
votes
6answers
3k views

How to deal with temporary files in ASP.NET?

Note that I'm not talking about the compiler-generated "Temporary ASP.NET Files". My web application (ASP.NET MVC) uses Graphviz to generate images that are then fed to the client. This requires the ...
4
votes
1answer
119 views

Creating temporary files in Android with NDK

I am currently working on a C-based, NDK-based, Android application. This application needs to create temporary files. On a regular Linux system, I would use tmpfile to ensure that these files are ...
4
votes
2answers
148 views

How to merge sorted files without using a temporary file?

I'm trying to merge many sorted files in a UNIX/Linux script with sort -m, and I noticed that sort first writes the result to a temporary file, then copies it to destination. My understanding of -m ...
4
votes
1answer
131 views

where can I find a copy of a .aspx.vb file that I lost?

I had a little disaster: I did an "undo checkout" in my .aspx.vb file and lost all my work. How can I recover my code? Can I find it in the Temporary ASP.NET Files? If so, where? Is there any other ...
4
votes
5answers
585 views

Windows temporary file in Java

How to create a file in Windows that would have attributes FILE_ATTRIBUTE_TEMPORARY and FILE_FLAG_DELETE_ON_CLOSE set using Java? I do want my file to be just in-memory file. To precise: ...
4
votes
7answers
2k views

ASP.NET Schedule deletion of temporary files

Question: I have an ASP.NET application which creates temporary PDF files (for the user to download). Now, many users over many days can create many PDFs, which take much disk space. What's the best ...
4
votes
3answers
755 views

How do I create a named temporary file on windows in Python?

I've got a Python program that needs to create a named temporary file which will be opened and closed a couple times over the course of the program, and should be deleted when the program exits. ...
4
votes
3answers
713 views

Temporary operation in a temporary directory in shell script

I need a fresh temporary directory to do some work in a shell script. When the work is done (or if I kill the job midway), I want the script to change back to the old working directory and wipe out ...
4
votes
5answers
2k views

Create temporary file and auto removed

I am writing a anti-leeching download script, and my plan is to create a temporary file, which is named by session ID, then after the session expires, the file will be automatically deleted. Is it ...
4
votes
7answers
1k views

How can I handle temporary files?

In my application my users can import files (pdf/xls/doc) to a table or export them to a folder. Now I want to directly open these files. So far I'm able to : - get an unique name - save the blob ...
4
votes
5answers
650 views

How can I use vim to edit text from Perl while the script is still running?

I have a Perl script that outputs text. I want to import this text into vim, edit it, save it and then exit. On exit, I want the original Perl script to process the edited file. E.G. how crontab -e ...
3
votes
3answers
124 views

Pipe vs. Temporary File

Is there a big performance difference between: Process A writing to a temp file, and process B reading that file Process A writing to a pipe, and process B reading from that pipe I'm curious to ...
3
votes
5answers
193 views

C/C++ System portable way to change maximum number of open files

I have a C++ program that transposes a very large matrix. The matrix is too large to hold in memory, so I was writing each column to a separate temporary file, and then concatenating the temporary ...
3
votes
3answers
541 views

C# Best Practices: Writing “temporary” files for download: Place in applicaion's environment folder or temp folder

Basically, I'm wondering if there is a best practice when it comes to the following issue of downloading files, not just for temporary use, but eventually to move them to the application folder. I'm ...
3
votes
2answers
579 views

is there an existing FileInputStream delete on close?

Is there an existing way to have a FileInputStream delete the underlying file automatically when closed? I was planning to make my own utility class to extend FileInputStreamand do it myself, but ...
3
votes
2answers
328 views

How should I use Perl's File::Temp?

I would like to create a temp file, write to the file-handle then call an external program with the filename. The problem is I would normally want to close the file after writing to it and before ...
3
votes
2answers
335 views

How can I delete temporary files that are still open in other programs?

My program writes temporary PDF files (using Path.GetTempFileName) which are then passed to the default PDF handler (typically Adobe Reader) for display. I have a finally block in my Main method to ...
3
votes
2answers
1k views

WIX: Using a temporary file during install

I am writing a WIX installer and I have a following requirement: During installation, I need to pass an absolute path to a file (lets call it A) included in my installer to a COM component, which ...
3
votes
1answer
283 views

Reusing the temporary file created by a file upload in a PHP form

regarding file uploads, I have a form through which I upload a file, I get the $temp_name = $_FILES['name']['temp_name'] and store it in a variable. Can I then use that variable again inside ...
3
votes
2answers
773 views

Use pyExcelerator to generate dynamic Excel file with Django. Ensure unique temporary filename

I'd like to generate a dynamic Excel file on request from Django. The library pyExcelerator does this, but I haven't found any way to use the contents of the Excel file without generating a ...
3
votes
4answers
893 views

Limitations of TEMP directory in Windows?

I have an application written in Python that's writing large amounts of data to the %TEMP% folder. Oddly, every once and awhile, it dies, returning IOError: [Errno 28] No space left on device. The ...
3
votes
2answers
2k views

How to create temporary file (0x100) to accelerate application

I have seen that Windows system use temporary files to increase the performance of some tasks. Those files are marked with the 0x100 attribute when i look at them. I have got the following text from ...
3
votes
1answer
1k views

Temporary Folder/Location for SharePoint

I have added a menu item in ECB of document of document library. On click of that menu i want to copy that document to my application. For this purpose i need to create a temporary file of the ...
3
votes
2answers
956 views

Logging to temporary directory in a cross-platform manner

I have an application for which log4j logging is configured in a log4j.properties file. Currently, this application runs on UNIX and creates a log file in /tmp. This application needs to run on ...
3
votes
6answers
3k views

How to create a path to a temporary file on Windows XP/Vista

What is the best way of doing this? tmpnam() returns a path to a file in the root of the drive, which requires administrator privileges on Windows Vista, so this is not an option.
2
votes
3answers
63 views

Storing files temporarily and loading them again in AS3 without Air

I am loading files (or rather, pictures) in my Flex application from a server, technically from a database. I display some of them at a time, think of it like an image preview, and quite often I ...
2
votes
0answers
75 views

Why does size of temp internet files folder exceed max folder size?

I am making a web page that detects the size of the "Temporary Internet Files" folder as well as the maximum size of that folder according to the registry. The code works fine, but with a surprising ...
2
votes
1answer
40 views

Trying to make a dynamically loaded java program

This might be just too crazy to accomplish but this is what I'm trying to do: I want an very basic java program that upon running will download another java program from a certain server and run ...
2
votes
1answer
59 views

What is the best way to interface with a a program that uses filenames on the command line for input and output?

I need to interface with some executables that expect to be passed filenames for input or output: ./helper in.txt out.txt What is the standard (and preferably cross-platform) way of doing this? I ...
2
votes
3answers
511 views

C# DataTable (DataRowCollection) stored in a temporary file, not memory?

I would like to replace a DataTable with a custom class that implements DataRowCollection by storing the rows in a temporary data file instead of keeping them in memory. I understand that this will ...
2
votes
3answers
424 views

PHP:: How to delete a file from server after is read. Unlink() is executed before

I'm trying to delete a picture (.jpg) from server after the first time showed. But the file is deleted (unlink();) before showed. I've already tried with sleep() but this only delay the loading and ...
2
votes
3answers
376 views

How do I create a temporary file in Groovy?

in Java there exists the java.io.File.createTempFile function to create temporary files. In Groovy there doesn't seem to exist such a functionality, as this function is missing from the File class. ...
2
votes
2answers
174 views

How to delete all generated binary files in Visual Studio 2008

I am not sure if the subject description is correct but basically this is what I want to achieve: I want to have a way to delete all binary files such as .exe, .dll to be deleted at a single click. ...
2
votes
4answers
294 views

Can not create a temporary file

I am using this piece of code to create a temporary file: String tmpDirectoryOp = System.getProperty("java.io.tmpdir"); File tmpDirectory = new File(tmpDirectoryOp); File fstream = ...

1 2 3 4