Skip to content

Note that in some IDEs, e.g. RStudio or R.app on macOS, the IDE itself opens files from other threads, in addition to the files opened from the main R thread.

Usage

ps_open_files(p = ps_handle())

Arguments

p

Process handle.

Value

Data frame with columns: fd and path. fd is numeric file descriptor on POSIX systems, NA on Windows. path is an absolute path to the file.

Details

For a zombie process it throws a zombie_process error.

Examples

p <- ps_handle()
ps_open_files(p)
#> # A data frame: 12 × 2
#>       fd path                                                        
#>    <int> <chr>                                                       
#>  1     0 pipe:[47143]                                                
#>  2     1 pipe:[47144]                                                
#>  3     2 pipe:[47145]                                                
#>  4     3 /home/runner/work/_temp/1648098e-52e4-4345-bcfa-726853e7526e
#>  5     4 anon_inode:[eventpoll]                                      
#>  6     5 pipe:[45393]                                                
#>  7     6 pipe:[45393]                                                
#>  8     7 pipe:[45394]                                                
#>  9     8 pipe:[45394]                                                
#> 10     9 anon_inode:[eventfd]                                        
#> 11   110 pipe:[23883]                                                
#> 12   113 pipe:[23884]                                                
f <- file(tmp <- tempfile(), "w")
ps_open_files(p)
#> # A data frame: 13 × 2
#>       fd path                                                        
#>    <int> <chr>                                                       
#>  1     0 pipe:[47143]                                                
#>  2     1 pipe:[47144]                                                
#>  3     2 pipe:[47145]                                                
#>  4     3 /home/runner/work/_temp/1648098e-52e4-4345-bcfa-726853e7526e
#>  5     4 anon_inode:[eventpoll]                                      
#>  6     5 pipe:[45393]                                                
#>  7     6 pipe:[45393]                                                
#>  8     7 pipe:[45394]                                                
#>  9     8 pipe:[45394]                                                
#> 10     9 anon_inode:[eventfd]                                        
#> 11    16 /tmp/RtmpMXdeeI/file18b73f366a5b                            
#> 12   110 pipe:[23883]                                                
#> 13   113 pipe:[23884]                                                
close(f)
unlink(tmp)
ps_open_files(p)
#> # A data frame: 12 × 2
#>       fd path                                                        
#>    <int> <chr>                                                       
#>  1     0 pipe:[47143]                                                
#>  2     1 pipe:[47144]                                                
#>  3     2 pipe:[47145]                                                
#>  4     3 /home/runner/work/_temp/1648098e-52e4-4345-bcfa-726853e7526e
#>  5     4 anon_inode:[eventpoll]                                      
#>  6     5 pipe:[45393]                                                
#>  7     6 pipe:[45393]                                                
#>  8     7 pipe:[45394]                                                
#>  9     8 pipe:[45394]                                                
#> 10     9 anon_inode:[eventfd]                                        
#> 11   110 pipe:[23883]                                                
#> 12   113 pipe:[23884]