Tagged Questions
This tag is used for questions about the creation and handling of temporary directories under any language.
44
votes
13answers
28k views
Create a temporary directory in Java
Is there a standard and reliable way of creating a temporary directory inside a Java application? There's an entry in Sun's issue database, which has a bit of code in the comments, but I wonder if ...
30
votes
3answers
29k views
How to get temporary folder for current user
Currently i am using following function to get the temporary folder path for current user:
string tempPath = System.IO.Path.GetTempPath();
On some machines it gives me temp folder path of current ...
23
votes
4answers
4k views
Cross-platform way of getting temp directory in Python
Is there a cross-platform way of getting the path to the temp directory in Python 2.6?
For example, under Linux that would be /tmp, while under XP C:\Documents and settings\\[user]\Application ...
12
votes
7answers
438 views
How should I handle exceptions in my Dispose() method?
I'd like to provide a class to manage creation and subsequent deletion of a temporary directory. Ideally, I'd like it to be usable in a using block to ensure that the directory gets deleted again ...
12
votes
4answers
3k views
How do I get the default temporary directory on Mac OS X?
I'd like to create some directories of data for some unit tests and I'd like these directories to be in the default temporary directory for the user.
I could just create a subdir under /tmp I ...
11
votes
1answer
985 views
How to create a temporary directory?
I use to create a tempfile, delete it and recreate it as a directory:
tmpnam=`tempfile`
rm -f $tmpnam
mkdir "$tmpnam"
The problem is, another process may get a same name X, if it accidently ...
10
votes
4answers
5k views
Creating a temporary directory in Windows?
What's the best way to get a temp directory name in Windows? I see that I can use GetTempPath and GetTempFileName to create a temporary file, but is there any equivalent to the Linux / BSD mkdtemp ...
7
votes
2answers
376 views
Create a temporary directory in Haskell
What is the proper way to safely create a temporary directory in Haskell? System.IO offers ways to create temporary files, but I can't find anything that does the same for directories, neither there ...
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
4answers
6k views
how can I create a temporary folder in java? [closed]
Possible Duplicate:
Create a temporary directory in Java
Duplicate: stackoverflow.com/questions/375910
Is there a way of creating a temporary folder in java ? I know of File's static ...
3
votes
3answers
542 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
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 ...
2
votes
4answers
283 views
Creating a unique temporary directory from pure C in windows
I'd like to create a unique temporary directory in Windows from some C
code (not C++ or C#). I want to do this so that I can put some temp
files in the directory, and then delete them all easily when ...
2
votes
1answer
219 views
Need a good “home” directory for web-app during Maven build
I have a Java web application that uses JNDI to determine its "home" directory where various configuration files and logging takes place. During a Maven build, we set the home directory location in a ...
1
vote
3answers
66 views
Python - Where should a library store temporary files?
I'm writing a Python library which needs to cache remote data on the local machine.
I would like to prevent the library from polluting the OS and placing temp files where they don't belong. To use OS ...
1
vote
1answer
40 views
iphone - where should I store image files if I don't care about its persistence?
I know normally I have two choices of places: Temporary folder or Cache folder.
But can anyone tell me the exact differences?
My app will download quite many images upon users' requests. Of course, ...
1
vote
1answer
384 views
Create directory inside NSTemporaryDirectory
How can I create a directory inside NSTemporaryDirectory? I tried something like:
[NSTemporaryDirectory() stringByAppendingPathComponent:@"/myTmp/"];
followed by the file name, but it didn't work.
1
vote
1answer
197 views
Deleting temporary directory
I found some code on here for creating temporary directories in Java.
public static File createTempDirectory() throws IOException
{
final File temp;
temp = File.createTempFile("temp", ...
1
vote
1answer
156 views
How can I temporarily change the tmp directory Perl uses?
Some libraries I use seem to write stuff to /tmp.
I would like to change the 'temporary' directory location my script (and all the imported libraries) uses to /new/tmp/location. Needless to say, I ...
1
vote
3answers
686 views
Changing temporary file folder location in linux (for everything on the system)?
Currently its /tmp
How can I set it to /anythingelse so that all applications use that subsequently?
1
vote
3answers
298 views
Unable to generate a temporary class
I recently upgrade my machine to XP 64 bit and also made some code changes to our software and when I'm doing new XmlSerializer(valueType), where valueType is a type that is using DirectoryItem, I'm ...
1
vote
5answers
2k views
How to create a temporary directory in C++?
I'm writing a function in C++ which creates a temporary directory. Such function should be as most portable as possible, e.g. it should work under linux, mac and win32 environments. How do I achieve ...
1
vote
2answers
310 views
how to create a temporary directory and get the path / file name in python
how to create a temporary directory and get the path / file name in python
1
vote
2answers
344 views
using a “temporary files” folder in python
I recently wrote a script which queries PyPI and downloads a package; however, the package gets downloaded to a user defined folder.
I`d like to modify the script in such a way that my downloaded ...
1
vote
1answer
3k views
Where is Bea Weblogic Work Folder
I know that this may be a trivial question but I really cannot find the work folder in Oracle BEA weblogic 10.3. Unlike the Apache Tomcat where it is clearly in the work directory usually under ...
0
votes
1answer
118 views
How to avoid Unknown: write failed: No space left on device (28)
I am on a shared host and i get this error on my domain
Unknown: write failed: No space left on device (28)
I think its because my /tmp directory is full, but i can't be sure. If that is the case ...
0
votes
1answer
57 views
Suggest a proper location to save recorded voice notes
I am developing an iphone app with the capability of recording voice using AVAudioRecorder.Currently I am saving the notes in TemporaryDirectory()
recordedTmpFile = [NSURL ...
0
votes
1answer
30 views
What is the standard environment variable used to specify a temporary directory?
I am writing a script that uses a temporary directory, and I would like to allow it to read the user's chosen temporary directory from an environment variable. What environment variable(s) should my ...
0
votes
1answer
197 views
iPhone - DrillDown
Hai all. I have a tableView which lists the contents of my document directory. I have some zip files in that. If I touch a file in the tableView, the corresponding zip file is unzipped and extracted ...
0
votes
1answer
169 views
creating a permant folder in /tmp/ of ubutu 10.04
how to create a permanent folder in the temporary folder in ubuntu? without being deleted when the computer shuts down, and not have to repeat the process every time the computer restarts
0
votes
4answers
564 views
How to create a temporary file in a makefile.
How can I get the pid of my make command in the Makefile?
Specifically, I want to use a temp directory that will be unique to this build.
I tried:
TEMPDIR = /tmp/myprog.$$$$
but this seems to ...
0
votes
4answers
2k views
Find user independent TEMP directory with Java
when running a Java application as service with the user 'LocalService', the temp directory ("java.io.tmpdir") points to 'c:/windows/temp' (for example).
Running a Java application normally gives ...
0
votes
2answers
990 views
access denied trying extracting an archive on the windows user temp folder
I'm trying to run a command-line process (which is extraction of a .7z archive) on a file that lies in a temporary folder on the windows user temp directory
(C:\Documents and Settings\User\Local ...