Displaying 5 results from an estimated 5 matches for "rtmpviefj4".
2017 Apr 21
3
tempdir() may be deleted during long-running R session
Hi Mikko,
I was bitten by this recently and I think some of the replies are
missing the point. As I understand it, the problem consists of these
elements:
1. When R starts, it creates a directory like /tmp/RtmpVIeFj4
2. Right after R starts I can create files in this directory with no
   error
3. After some hours or days I can no longer create files in this
   directory, because it has been deleted
If R expected the directory to be deleted at random, and if we expect
users to call dir.create every time they...
2017 Apr 23
0
tempdir() may be deleted during long-running R session
On 21 April 2017 at 10:34, frederik at ofb.net wrote:
| Hi Mikko,
| 
| I was bitten by this recently and I think some of the replies are
| missing the point. As I understand it, the problem consists of these
| elements:
| 
| 1. When R starts, it creates a directory like /tmp/RtmpVIeFj4
| 
| 2. Right after R starts I can create files in this directory with no
|    error
| 
| 3. After some hours or days I can no longer create files in this
|    directory, because it has been deleted
Nope. That is local to your system. Witness eg at my workstation:
/tmp$ ls -ltGd Rtmp* 
drwx------...
2017 Apr 24
1
tempdir() may be deleted during long-running R session
...2017 at 10:34, frederik at ofb.net wrote:
> | Hi Mikko,
> | 
> | I was bitten by this recently and I think some of the replies are
> | missing the point. As I understand it, the problem consists of these
> | elements:
> | 
> | 1. When R starts, it creates a directory like /tmp/RtmpVIeFj4
> | 
> | 2. Right after R starts I can create files in this directory with no
> |    error
> | 
> | 3. After some hours or days I can no longer create files in this
> |    directory, because it has been deleted
> 
> Nope. That is local to your system. Witness eg at my workst...
2017 Apr 21
2
tempdir() may be deleted during long-running R session
On 21/04/17 14:03, Prof Brian Ripley wrote:
> From the R-admin manual ?5:
>
> 'Various environment variables can be set to determine where R creates
> its per-session temporary directory. The environment variables TMPDIR,
> TMP and TEMP are searched in turn and the first one which is set and
> points to a writable area is used. If none do, the final default is /tmp
> on
2017 Apr 25
4
tempdir() may be deleted during long-running R session
...ofb.net wrote:
    > | Hi Mikko,
    > | 
    > | I was bitten by this recently and I think some of the replies are
    > | missing the point. As I understand it, the problem consists of these
    > | elements:
    > | 
    > | 1. When R starts, it creates a directory like /tmp/RtmpVIeFj4
    > | 
    > | 2. Right after R starts I can create files in this directory with no
    > |    error
    > | 
    > | 3. After some hours or days I can no longer create files in this
    > |    directory, because it has been deleted
    > Nope. That is local to your system....