const char tmpl[] = "XXXXXX.tmp";
int fd = mkstemp(tmpl);
const resultOfCallback = tempy.file.task(tempFile => {
// do something with tempFile
})
my $path = tempfile;
my $fh = tempfile();
# or
my ($fh, $filename) = tempfile();
file = Tempfile.new('foo')
file = io.tmpfile()
const char tmpl[] = "XXXXXX.tmp"; int fd = mkstemp(tmpl);
(File/createTempFile "prefix" "suffix" (new File "/tmp"))
(File/createTempFile "prefix" "suffix")
string file = Path.GetTempFileName();
auto f = File.tmpfile();
open (newunit=u,status="scratch")
tmpfile, err := os.CreateTemp("", "")
withTempFile $ \f -> do -- do something with f
const tempFile = tempy.file()
const resultOfCallback = tempy.file.task(tempFile => { // do something with tempFile })
File tempFile = File.createTempFile("prefix-", "-suffix"); tempFile.deleteOnExit();
$f = tmpfile();
var H: THandle; begin H := FileCreate(GetTempFileName); end.
my $path = tempfile;
my $fh = tempfile(); # or my ($fh, $filename) = tempfile();
file = tempfile.TemporaryFile()
file = Tempfile.new('foo')
let temp_dir = TempDir::new("prefix")?; let temp_file = File::open(temp_dir.path().join("file_name"))?;