tempdir Questions

6

Solved

I am using R on windows and need to change the temporary directory where tmp files are stored. I checked a few answers, here, in R-help, etc., but no one is working. Some links I tried: here, he...
Barred asked 14/6, 2013 at 11:14

8

Solved

I have a script that checks a zipfile containing a number of matching PDF+textfiles. I want to unpack, or somehow read the textfiles from the zipfile, and just pick out some information from the te...
Freighter asked 10/11, 2009 at 13:1

1

Solved

I created an integration test for my pipeline to check if the right CSV file is generated: class CsvBatchSinkTest { @RegisterExtension static SparkExtension spark = new SparkExtension(); @Tem...
Locality asked 24/5, 2019 at 10:0

1

We run code which does the standard for creating a temp directory: import java.nio.file.Files; And then: tmp = Files.createTempDirectory("ourprefix-"); This, effectively, creates the director...
Carbrey asked 25/5, 2018 at 15:6

4

I want to create my own variant of makePSOCKcluster and newPSOCKnode using ssh connection via plink. So, I rewrite code if (machine != "localhost") { rshcmd <- getClusterOption("rshcmd", opti...
Tsana asked 21/2, 2017 at 23:5

4

Solved

Just curious as to when System.getProperty("java.io.tmpdir") returns "c:\temp". According to the java.io.File Java Docs- The default temporary-file directory is specified by the system property...
Bik asked 3/5, 2013 at 5:40

2

Solved

I'm running tests that create a lot of large files during execution. For this purpose I would like to delete the tmpdir directory if a test has passed. But if a test fails the contents of tmpdir sh...
Cradle asked 1/6, 2016 at 8:32

2

Solved

My program does some fairly intensive operations, so I use a scratch file in order to speed things up. I use the following Java code: File scratchFile = new File(System.getProperty("java.io.tmpdir...
Danyel asked 13/2, 2013 at 1:34

6

Solved

I need a temporary directory, but I want full control over its creation and deletion. I will use this directory to place git repositories which I want to monitor for new commits, so I need to stor...
Kansu asked 9/1, 2012 at 13:30
1

© 2022 - 2024 — McMap. All rights reserved.