condor_rmdir | R Documentation |
Remove directories on the submitter machine.
condor_rmdir(run.dir, top.dir = "condor", quiet = FALSE, session = NULL)
run.dir |
name of a Condor run directory inside |
top.dir |
top directory on submitter machine that contains Condor run directories. |
quiet |
whether to suppress messages. |
session |
optional object of class |
The default value of session = NULL
looks for a session
object
in the user workspace. This allows the user to run Condor functions without
explicitly specifying the session
.
No return value, called for side effects.
Arni Magnusson.
condor_submit
, condor_q
,
condor_dir
, and condor_download
provide the main
Condor interface.
condor_rm
stops Condor jobs and condor_rmdir
removes
directories on the submitter machine.
condor-package
gives an overview of the package.
## Not run:
# General workflow
session <- ssh_connect("servername")
condor_submit()
condor_q()
condor_dir()
condor_download() # after job has finished
# Remove one or more directories
condor_rmdir("01_this") # remove ~/condor/01_this (one run)
condor_rmdir(c("01_this", "02_that")) # remove two model runs inside condor
condor_rmdir("test_runs", top.dir=".") # remove ~/my_runs (many subdirs)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.