unlockRessource-character-method: Unlock File System Ressource

Description Usage Arguments Value Author(s) References See Also Examples

Description

See generic: unlockRessource

Usage

1
2
## S4 method for signature 'character'
unlockRessource(path, strict = FALSE, ...)

Arguments

path

character. File path.

strict

logical. TRUE: non-existing ressources trigger error; FALSE: non-existing ressources result in return value of FALSE.

...

Further arguments passed to subsequent functions/methods. In particular: getLockFileName.

Value

character. Lock file name.

Author(s)

Janko Thyson janko.thyson@rappster.de

References

https://github.com/Rappster/filesystr

See Also

unlockRessource

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
## Not run: 

## Create example content  
path <- file.path(tempdir(), "test/registry.rdata")
dir.create(dirname(path), showWarnings = FALSE)
file.create(path)

## Open directory in file system browser //
openRessource(path = dirname(path))

## File //
lockRessource(path = path)
## Note additional '*FILE_LOCK' file in directory 
unlockRessource(path = path)
## Note '*FILE_LOCK' file in directory has been removed again

## Directory //
lockRessource(path = dirname(path))
## Note additional '*DIR_LOCK' file in directory 
unlockRessource(path = dirname(path))
## Note '*DIR_LOCK' file in directory has been removed again

## Non-existing ressources //
unlockRessource(path = "abcd")
try(unlockRessource(path = "abcd", strict = TRUE))


## End(Not run)

rappster/filesystr documentation built on May 26, 2019, 11:17 p.m.