condor_rmdir {condor}R Documentation

Condor Remove Directory

Description

Remove directories on the submitter machine.

Usage

condor_rmdir(run.dir, top.dir = "condor", quiet = FALSE, session = NULL)

Arguments

run.dir

name of a Condor run directory inside top.dir.

top.dir

top directory on submitter machine that contains Condor run directories.

quiet

whether to suppress messages.

session

optional object of class ssh_connect.

Details

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.

Value

No return value, called for side effects.

Author(s)

Arni Magnusson.

See Also

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.

Examples

## 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)


[Package condor version 2.1.0 Index]