cwltool.stdfsaccess
Abstracted IO access.
Module Contents
Classes
Local filesystem implementation. |
Functions
|
- cwltool.stdfsaccess.abspath(src, basedir)
- Parameters:
src (str) –
basedir (str) –
- Return type:
str
- class cwltool.stdfsaccess.StdFsAccess(basedir)
Local filesystem implementation.
- Parameters:
basedir (str) –
- glob(pattern)
- Parameters:
pattern (str) –
- Return type:
List[str]
- open(fn, mode)
- Parameters:
fn (str) –
mode (str) –
- Return type:
IO[Any]
- exists(fn)
- Parameters:
fn (str) –
- Return type:
bool
- size(fn)
- Parameters:
fn (str) –
- Return type:
int
- isfile(fn)
- Parameters:
fn (str) –
- Return type:
bool
- isdir(fn)
- Parameters:
fn (str) –
- Return type:
bool
- listdir(fn)
- Parameters:
fn (str) –
- Return type:
List[str]
- join(path, *paths)
- Parameters:
path (str) –
paths (str) –
- Return type:
str
- realpath(path)
- Parameters:
path (str) –
- Return type:
str