Top "Temporary-files" questions

A (often short lived) file, automatically created for reasons like storing data that no longer fit into memory, for inter-process communication or to save state for possible crash recovery.

CreateFile with the FILE_FLAG_DELETE_ON_CLOSE flag

Before I describe my problem, here is a description of the program (IHExplorer.exe) I'm writting: This is a C++ …

c++ filesystems temporary-files createfile
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 …

android-ndk temporary-files
Where does python tempfile writes its files?

In python you can create a tempfile as follows: tempfile.TemporaryFile() And then you can write to it. Where is …

python linux temporary-files
Temporary file with specific file extension in Python 3

I am writing some unit tests for a piece of code that takes a path and attempts to load the …

unit-testing python-3.x file-extension temporary-files
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 …

c# windows io temporary-files
How to delete all temp files using powershell

Anyone knows how to delete all temp files using powershell. Get-ChildItem $env:TEMP\TEMP | Remove-Item -confirm:$false -force -Recurse I …

powershell temporary-files temp
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 …

bash shell temporary-files temporary-directory
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 …

log4j temporary-files
Is there any way to make a Ruby temporary file permanent?

If I've created a temporary file through Tempfile, is there any way aside from copying it to another file that …

ruby temporary-files
When does iOS clean the local app ./tmp directories?

When does iOS clean the local app ./tmp directory? Note that this is not a dupe of this question. I'm …

ios filesystems temporary-files temporary-directory