A program I use is failing when it uses tmpfile() for large files. The problem seems to be I don't have permission to create large files in /tmp, which this function uses by default. So is there a way, perhaps with an environmental variable, that I can make tmpfile() write to a different location?

Edit: the program in question is sox, which uses C.

link|improve this question

Which language? – Nick Presta Dec 27 '09 at 4:01
It's unlikely that you " don't have permission to create large files in /tmp". It's more likely that you've filled up your /tmp partition. Why not simply increase the size of your /tmp partition? – Asaph Dec 27 '09 at 4:22
This is on a shared server where I don't have control over /tmp settings – Richard Dec 27 '09 at 23:59
feedback

2 Answers

up vote 4 down vote accepted

You can use the environment variable TMPDIR to to tell tmpfile() where to create files:

sh syntax:

TMPDIR=/path/to/whatever; export TMPDIR

csh syntax:

setenv TMPDIR /path/to/whatever
link|improve this answer
feedback

Given the information in man tmpfile (3) you may want to: #define P_tmpdir "/somedir" Of course, this probably isn't too reliable.

You can also set your environmental variable, TMPDIR to some location.

link|improve this answer
1  
How are my preprocessor macros going to change what the C library does, exactly? – SamB Oct 14 '11 at 0:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.