Package saga :: Package name_space :: Module _name_space :: Class directory
[hide private]
[frames] | no frames]

Class directory

 object --+            
          |            
??.instance --+        
              |        
 _engine.object --+    
                  |    
              entry --+
                      |
                     directory
Known Subclasses:

Nested Classes [hide private]

Inherited from _engine.object: object_type

Instance Methods [hide private]
 
__init__(...)
__init__( (object)arg1, (url)arg2) -> None :
 
change_dir(...)
change_dir( (directory)arg1, (str)arg2) -> None : changes the current directory (plain)
 
copy(...)
copy( (directory)arg1, (url)arg2, (url)arg3 [, (int)arg4]) -> None : copies the the given item to the given name (plain)
 
exists(...)
exists( (directory)arg1, (url)arg2) -> bool : returns, whether the given item exists (plain)
 
find(...)
find( (directory)arg1, (str)arg2 [, (int)arg3]) -> object : finds entries matching a given pattern (contained in the tree below this directory) (plain)
 
get_entry(...)
get_entry( (directory)arg1, (int)arg2) -> url : returns a specific item based on the given index (plain)
 
get_num_entries(...)
get_num_entries( (directory)arg1) -> int : returns the number of entries in this directory (plain)
 
is_dir(...)
is_dir( (directory)arg1, (url)arg2) -> bool : returns, whether the given item refers to a directory (plain)
 
is_entry(...)
is_entry( (directory)arg1, (url)arg2) -> bool : returns, whether the given item refers to a simple entry (plain)
 
is_link(...)
is_link( (directory)arg1, (url)arg2) -> bool : returns, whether the given item is a link to another entry (plain)
 
link(...)
link( (directory)arg1, (url)arg2, (url)arg3 [, (int)arg4]) -> None : links the the given item to the given item (plain)
 
list(...)
list( (directory)arg1 [, (str)arg2 [, (int)arg3]]) -> object : lists entries matching a given pattern (contained in this directory) (plain)
 
make_dir(...)
make_dir( (directory)arg1, (url)arg2 [, (int)arg3]) -> None : creates a new directory (without opening it) (plain)
 
move(...)
move( (directory)arg1, (url)arg2, (url)arg3 [, (int)arg4]) -> None : moves the the given item to the given name (plain)
 
open(...)
open( (directory)arg1, (url)arg2 [, (int)arg3]) -> entry : opens the given item (plain)
 
open_dir(...)
open_dir( (directory)arg1, (url)arg2 [, (int)arg3]) -> directory : opens the given directory (plain)
 
permissions_allow(...)
permissions_allow( (directory)arg1, (str)arg2, (str)arg3, (int)arg4 [, (int)arg5]) -> None : enable a permission based on wildcard specification (plain)
 
permissions_deny(...)
permissions_deny( (directory)arg1, (str)arg2, (str)arg3, (int)arg4 [, (int)arg5]) -> None : disable a permission based on wildcard specification (plain)
 
read_link(...)
read_link( (directory)arg1, (url)arg2) -> url : returns the name of the items the given entry is linked to (plain)
 
remove(...)
remove( (directory)arg1, (url)arg2 [, (int)arg3]) -> None : removes the given item (plain)

Inherited from entry: close, get_cwd, get_group, get_name, get_owner, get_url, permissions_check

Inherited from _engine.object: __reduce__, clone, get_id, get_object_type_name, get_session, get_type

Inherited from unreachable.instance: __new__

Inherited from object: __delattr__, __getattribute__, __hash__, __reduce_ex__, __repr__, __setattr__, __str__

Class Variables [hide private]

Inherited from _engine.object: Advert, AdvertDirectory, Buffer, Context, Directory, Endpoint, Exception, File, IOVec, Job, JobDescription, JobSelf, JobService, LogicalDirectory, LogicalFile, Metric, Msg, NSDirectory, NSEntry, Parameter, RPC, Session, Stream, StreamServer, Task, TaskContainer, URL, __instance_size__

Properties [hide private]

Inherited from _engine.object: id, session, type

Inherited from object: __class__

Method Details [hide private]

__init__(...)
(Constructor)

 

__init__( (object)arg1, (url)arg2) -> None :

    C++ signature :
        void __init__(_object*,saga::url)

__init__( (object)arg1, (str)arg2) -> None :

    C++ signature :
        void __init__(_object*,std::string)

__init__( (object)arg1, (url)arg2, (int)arg3) -> None :

    C++ signature :
        void __init__(_object*,saga::url,int)

__init__( (object)arg1, (str)arg2, (int)arg3) -> None :

    C++ signature :
        void __init__(_object*,std::string,int)

__init__( (object)arg1, (session)arg2, (url)arg3) -> None :

    C++ signature :
        void __init__(_object*,saga::session,saga::url)

__init__( (object)arg1, (session)arg2, (str)arg3) -> None :

    C++ signature :
        void __init__(_object*,saga::session,std::string)

__init__( (object)arg1, (session)arg2, (url)arg3, (int)arg4) -> None :

    C++ signature :
        void __init__(_object*,saga::session,saga::url,int)

__init__( (object)arg1, (session)arg2, (str)arg3, (int)arg4) -> None :

    C++ signature :
        void __init__(_object*,saga::session,std::string,int)

Overrides: object.__init__

change_dir(...)

 

change_dir( (directory)arg1, (str)arg2) -> None :
    changes the current directory (plain)

    C++ signature :
        void change_dir(saga::name_space::directory,std::string)

change_dir( (directory)arg1, (routine_type)arg2, (str)arg3) -> task :
    changes the current directory (task based)

    C++ signature :
        saga::task change_dir(saga::name_space::directory,saga::python::routine_type,std::string)

copy(...)

 

copy( (directory)arg1, (url)arg2, (url)arg3 [, (int)arg4]) -> None :
    copies the the given item to the given name (plain)

    C++ signature :
        void copy(saga::name_space::directory,saga::url,saga::url [,int])

copy( (directory)arg1, (routine_type)arg2, (url)arg3, (url)arg4 [, (int)arg5]) -> task :
    copies the the given item to the given name (task based)

    C++ signature :
        saga::task copy(saga::name_space::directory,saga::python::routine_type,saga::url,saga::url [,int])

copy( (directory)arg1, (str)arg2, (url)arg3 [, (int)arg4]) -> None :
    copies the the given item to the given name (plain)

    C++ signature :
        void copy(saga::name_space::directory,std::string,saga::url [,int])

copy( (directory)arg1, (routine_type)arg2, (str)arg3, (url)arg4 [, (int)arg5]) -> task :
    copies the the given item to the given name (task based)

    C++ signature :
        saga::task copy(saga::name_space::directory,saga::python::routine_type,std::string,saga::url [,int])

copy( (directory)arg1, (url)arg2, (str)arg3 [, (int)arg4]) -> None :
    copies the the given item to the given name (plain)

    C++ signature :
        void copy(saga::name_space::directory,saga::url,std::string [,int])

copy( (directory)arg1, (routine_type)arg2, (url)arg3, (str)arg4 [, (int)arg5]) -> task :
    copies the the given item to the given name (task based)

    C++ signature :
        saga::task copy(saga::name_space::directory,saga::python::routine_type,saga::url,std::string [,int])

copy( (directory)arg1, (str)arg2, (str)arg3 [, (int)arg4]) -> None :
    copies the the given item to the given name (plain)

    C++ signature :
        void copy(saga::name_space::directory,std::string,std::string [,int])

copy( (directory)arg1, (routine_type)arg2, (str)arg3, (str)arg4 [, (int)arg5]) -> task :
    copies the the given item to the given name (task based)

    C++ signature :
        saga::task copy(saga::name_space::directory,saga::python::routine_type,std::string,std::string [,int])

copy( (directory)arg1, (str)arg2, (url)arg3 [, (int)arg4]) -> None :
    copies the the given items to the given name based on wildcard specification (plain)

    C++ signature :
        void copy(saga::name_space::directory,std::string,saga::url [,int])

copy( (directory)arg1, (routine_type)arg2, (str)arg3, (url)arg4 [, (int)arg5]) -> task :
    copies the the given items to the given name based on wildcard specification (task based)

    C++ signature :
        saga::task copy(saga::name_space::directory,saga::python::routine_type,std::string,saga::url [,int])

Overrides: entry.copy

exists(...)

 

exists( (directory)arg1, (url)arg2) -> bool :
    returns, whether the given item exists (plain)

    C++ signature :
        bool exists(saga::name_space::directory,saga::url)

exists( (directory)arg1, (routine_type)arg2, (url)arg3) -> task :
    returns, whether the given item exists (task based)

    C++ signature :
        saga::task exists(saga::name_space::directory,saga::python::routine_type,saga::url)

exists( (directory)arg1, (str)arg2) -> bool :
    returns, whether the given item exists (plain)

    C++ signature :
        bool exists(saga::name_space::directory,std::string)

exists( (directory)arg1, (routine_type)arg2, (str)arg3) -> task :
    returns, whether the given item exists (task based)

    C++ signature :
        saga::task exists(saga::name_space::directory,saga::python::routine_type,std::string)

find(...)

 

find( (directory)arg1, (str)arg2 [, (int)arg3]) -> object :
    finds entries matching a given pattern (contained in the tree below this directory) (plain)

    C++ signature :
        std::vector<saga::url, std::allocator<saga::url> > find(saga::name_space::directory,std::string [,int])

find( (directory)arg1, (routine_type)arg2, (str)arg3 [, (int)arg4]) -> task :
    finds entries matching a given pattern (contained in the tree below this directory) (task based)

    C++ signature :
        saga::task find(saga::name_space::directory,saga::python::routine_type,std::string [,int])

get_entry(...)

 

get_entry( (directory)arg1, (int)arg2) -> url :
    returns a specific item based on the given index (plain)

    C++ signature :
        saga::url get_entry(saga::name_space::directory,unsigned long)

get_entry( (directory)arg1, (routine_type)arg2, (int)arg3) -> task :
    returns a specific item based on the given index (task based)

    C++ signature :
        saga::task get_entry(saga::name_space::directory,saga::python::routine_type,unsigned long)

get_num_entries(...)

 

get_num_entries( (directory)arg1) -> int :
    returns the number of entries in this directory (plain)

    C++ signature :
        unsigned long get_num_entries(saga::name_space::directory)

get_num_entries( (directory)arg1, (routine_type)arg2) -> task :
    returns the number of entries in this directory (task based)

    C++ signature :
        saga::task get_num_entries(saga::name_space::directory,saga::python::routine_type)

is_dir(...)

 

is_dir( (directory)arg1, (url)arg2) -> bool :
    returns, whether the given item refers to a directory (plain)

    C++ signature :
        bool is_dir(saga::name_space::directory,saga::url)

is_dir( (directory)arg1, (routine_type)arg2, (url)arg3) -> task :
    returns, whether the given item refers to a directory (task based)

    C++ signature :
        saga::task is_dir(saga::name_space::directory,saga::python::routine_type,saga::url)

is_dir( (directory)arg1, (str)arg2) -> bool :
    returns, whether the given item refers to a directory (plain)

    C++ signature :
        bool is_dir(saga::name_space::directory,std::string)

is_dir( (directory)arg1, (routine_type)arg2, (str)arg3) -> task :
    returns, whether the given item refers to a directory (task based)

    C++ signature :
        saga::task is_dir(saga::name_space::directory,saga::python::routine_type,std::string)

Overrides: entry.is_dir

is_entry(...)

 

is_entry( (directory)arg1, (url)arg2) -> bool :
    returns, whether the given item refers to a simple entry (plain)

    C++ signature :
        bool is_entry(saga::name_space::directory,saga::url)

is_entry( (directory)arg1, (routine_type)arg2, (url)arg3) -> task :
    returns, whether the given item refers to a simple entry (task based)

    C++ signature :
        saga::task is_entry(saga::name_space::directory,saga::python::routine_type,saga::url)

is_entry( (directory)arg1, (str)arg2) -> bool :
    returns, whether the given item refers to a simple entry (plain)

    C++ signature :
        bool is_entry(saga::name_space::directory,std::string)

is_entry( (directory)arg1, (routine_type)arg2, (str)arg3) -> task :
    returns, whether the given item refers to a simple entry (task based)

    C++ signature :
        saga::task is_entry(saga::name_space::directory,saga::python::routine_type,std::string)

Overrides: entry.is_entry

is_link(...)

 

is_link( (directory)arg1, (url)arg2) -> bool :
    returns, whether the given item is a link to another entry (plain)

    C++ signature :
        bool is_link(saga::name_space::directory,saga::url)

is_link( (directory)arg1, (routine_type)arg2, (url)arg3) -> task :
    returns, whether the given item is a link to another entry (task based)

    C++ signature :
        saga::task is_link(saga::name_space::directory,saga::python::routine_type,saga::url)

is_link( (directory)arg1, (str)arg2) -> bool :
    returns, whether the given item is a link to another entry (plain)

    C++ signature :
        bool is_link(saga::name_space::directory,std::string)

is_link( (directory)arg1, (routine_type)arg2, (str)arg3) -> task :
    returns, whether the given item is a link to another entry (task based)

    C++ signature :
        saga::task is_link(saga::name_space::directory,saga::python::routine_type,std::string)

Overrides: entry.is_link

link(...)

 

link( (directory)arg1, (url)arg2, (url)arg3 [, (int)arg4]) -> None :
    links the the given item to the given item (plain)

    C++ signature :
        void link(saga::name_space::directory,saga::url,saga::url [,int])

link( (directory)arg1, (routine_type)arg2, (url)arg3, (url)arg4 [, (int)arg5]) -> task :
    links the the given item to the given item (task based)

    C++ signature :
        saga::task link(saga::name_space::directory,saga::python::routine_type,saga::url,saga::url [,int])

link( (directory)arg1, (str)arg2, (url)arg3 [, (int)arg4]) -> None :
    links the the given item to the given item (plain)

    C++ signature :
        void link(saga::name_space::directory,std::string,saga::url [,int])

link( (directory)arg1, (routine_type)arg2, (str)arg3, (url)arg4 [, (int)arg5]) -> task :
    links the the given item to the given item (task based)

    C++ signature :
        saga::task link(saga::name_space::directory,saga::python::routine_type,std::string,saga::url [,int])

link( (directory)arg1, (url)arg2, (str)arg3 [, (int)arg4]) -> None :
    links the the given item to the given item (plain)

    C++ signature :
        void link(saga::name_space::directory,saga::url,std::string [,int])

link( (directory)arg1, (routine_type)arg2, (url)arg3, (str)arg4 [, (int)arg5]) -> task :
    links the the given item to the given item (task based)

    C++ signature :
        saga::task link(saga::name_space::directory,saga::python::routine_type,saga::url,std::string [,int])

link( (directory)arg1, (str)arg2, (str)arg3 [, (int)arg4]) -> None :
    links the the given item to the given item (plain)

    C++ signature :
        void link(saga::name_space::directory,std::string,std::string [,int])

link( (directory)arg1, (routine_type)arg2, (str)arg3, (str)arg4 [, (int)arg5]) -> task :
    links the the given item to the given item (task based)

    C++ signature :
        saga::task link(saga::name_space::directory,saga::python::routine_type,std::string,std::string [,int])

link( (directory)arg1, (str)arg2, (url)arg3 [, (int)arg4]) -> None :
    links the the given items to the given item based on wildcard specification (plain)

    C++ signature :
        void link(saga::name_space::directory,std::string,saga::url [,int])

link( (directory)arg1, (routine_type)arg2, (str)arg3, (url)arg4 [, (int)arg5]) -> task :
    links the the given items to the given item based on wildcard specification (task based)

    C++ signature :
        saga::task link(saga::name_space::directory,saga::python::routine_type,std::string,saga::url [,int])

Overrides: entry.link

list(...)

 

list( (directory)arg1 [, (str)arg2 [, (int)arg3]]) -> object :
    lists entries matching a given pattern (contained in this directory) (plain)

    C++ signature :
        std::vector<saga::url, std::allocator<saga::url> > list(saga::name_space::directory [,std::string [,int]])

list( (directory)arg1, (routine_type)arg2 [, (str)arg3 [, (int)arg4]]) -> task :
    lists entries matching a given pattern (contained in this directory) (task based)

    C++ signature :
        saga::task list(saga::name_space::directory,saga::python::routine_type [,std::string [,int]])

make_dir(...)

 

make_dir( (directory)arg1, (url)arg2 [, (int)arg3]) -> None :
    creates a new directory (without opening it) (plain)

    C++ signature :
        void make_dir(saga::name_space::directory,saga::url [,int])

make_dir( (directory)arg1, (routine_type)arg2, (url)arg3 [, (int)arg4]) -> task :
    creates a new directory (without opening it) (task based)

    C++ signature :
        saga::task make_dir(saga::name_space::directory,saga::python::routine_type,saga::url [,int])

move(...)

 

move( (directory)arg1, (url)arg2, (url)arg3 [, (int)arg4]) -> None :
    moves the the given item to the given name (plain)

    C++ signature :
        void move(saga::name_space::directory,saga::url,saga::url [,int])

move( (directory)arg1, (routine_type)arg2, (url)arg3, (url)arg4 [, (int)arg5]) -> task :
    moves the the given item to the given name (task based)

    C++ signature :
        saga::task move(saga::name_space::directory,saga::python::routine_type,saga::url,saga::url [,int])

move( (directory)arg1, (str)arg2, (url)arg3 [, (int)arg4]) -> None :
    moves the the given item to the given name (plain)

    C++ signature :
        void move(saga::name_space::directory,std::string,saga::url [,int])

move( (directory)arg1, (routine_type)arg2, (str)arg3, (url)arg4 [, (int)arg5]) -> task :
    moves the the given item to the given name (task based)

    C++ signature :
        saga::task move(saga::name_space::directory,saga::python::routine_type,std::string,saga::url [,int])

move( (directory)arg1, (url)arg2, (str)arg3 [, (int)arg4]) -> None :
    moves the the given item to the given name (plain)

    C++ signature :
        void move(saga::name_space::directory,saga::url,std::string [,int])

move( (directory)arg1, (routine_type)arg2, (url)arg3, (str)arg4 [, (int)arg5]) -> task :
    moves the the given item to the given name (task based)

    C++ signature :
        saga::task move(saga::name_space::directory,saga::python::routine_type,saga::url,std::string [,int])

move( (directory)arg1, (str)arg2, (str)arg3 [, (int)arg4]) -> None :
    moves the the given item to the given name (plain)

    C++ signature :
        void move(saga::name_space::directory,std::string,std::string [,int])

move( (directory)arg1, (routine_type)arg2, (str)arg3, (str)arg4 [, (int)arg5]) -> task :
    moves the the given item to the given name (task based)

    C++ signature :
        saga::task move(saga::name_space::directory,saga::python::routine_type,std::string,std::string [,int])

move( (directory)arg1, (str)arg2, (url)arg3 [, (int)arg4]) -> None :
    moves the the given items to the given name based on wildcard specification (plain)

    C++ signature :
        void move(saga::name_space::directory,std::string,saga::url [,int])

move( (directory)arg1, (routine_type)arg2, (str)arg3, (url)arg4 [, (int)arg5]) -> task :
    moves the the given items to the given name based on wildcard specification (task based)

    C++ signature :
        saga::task move(saga::name_space::directory,saga::python::routine_type,std::string,saga::url [,int])

Overrides: entry.move

open(...)

 

open( (directory)arg1, (url)arg2 [, (int)arg3]) -> entry :
    opens the given item (plain)

    C++ signature :
        saga::name_space::entry open(saga::name_space::directory,saga::url [,int])

open( (directory)arg1, (routine_type)arg2, (url)arg3 [, (int)arg4]) -> task :
    opens the given item (task based)

    C++ signature :
        saga::task open(saga::name_space::directory,saga::python::routine_type,saga::url [,int])

open( (directory)arg1, (str)arg2 [, (int)arg3]) -> entry :
    opens the given item (plain)

    C++ signature :
        saga::name_space::entry open(saga::name_space::directory,std::string [,int])

open( (directory)arg1, (routine_type)arg2, (str)arg3 [, (int)arg4]) -> task :
    opens the given item (task based)

    C++ signature :
        saga::task open(saga::name_space::directory,saga::python::routine_type,std::string [,int])

open_dir(...)

 

open_dir( (directory)arg1, (url)arg2 [, (int)arg3]) -> directory :
    opens the given directory (plain)

    C++ signature :
        saga::name_space::directory open_dir(saga::name_space::directory,saga::url [,int])

open_dir( (directory)arg1, (routine_type)arg2, (url)arg3 [, (int)arg4]) -> task :
    opens the given directory (task based)

    C++ signature :
        saga::task open_dir(saga::name_space::directory,saga::python::routine_type,saga::url [,int])

open_dir( (directory)arg1, (url)arg2 [, (int)arg3]) -> directory :
    opens the given directory (plain)

    C++ signature :
        saga::name_space::directory open_dir(saga::name_space::directory,saga::url [,int])

open_dir( (directory)arg1, (routine_type)arg2, (url)arg3 [, (int)arg4]) -> task :
    opens the given directory (task based)

    C++ signature :
        saga::task open_dir(saga::name_space::directory,saga::python::routine_type,saga::url [,int])

permissions_allow(...)

 

permissions_allow( (directory)arg1, (str)arg2, (str)arg3, (int)arg4 [, (int)arg5]) -> None :
    enable a permission based on wildcard specification (plain)

    C++ signature :
        void permissions_allow(saga::name_space::directory,std::string,std::string,int [,int])

permissions_allow( (directory)arg1, (routine_type)arg2, (str)arg3, (str)arg4, (int)arg5 [, (int)arg6]) -> task :
    enable a permission based on wildcard specification (task based)

    C++ signature :
        saga::task permissions_allow(saga::name_space::directory,saga::python::routine_type,std::string,std::string,int [,int])

permissions_allow( (directory)arg1, (url)arg2, (str)arg3, (int)arg4 [, (int)arg5]) -> None :
    enable a permission on a given namespace entry (plain)

    C++ signature :
        void permissions_allow(saga::name_space::directory,saga::url,std::string,int [,int])

permissions_allow( (directory)arg1, (routine_type)arg2, (url)arg3, (str)arg4, (int)arg5 [, (int)arg6]) -> task :
    enable a permission on a given namespace entry (task based)

    C++ signature :
        saga::task permissions_allow(saga::name_space::directory,saga::python::routine_type,saga::url,std::string,int [,int])

Overrides: entry.permissions_allow

permissions_deny(...)

 

permissions_deny( (directory)arg1, (str)arg2, (str)arg3, (int)arg4 [, (int)arg5]) -> None :
    disable a permission based on wildcard specification (plain)

    C++ signature :
        void permissions_deny(saga::name_space::directory,std::string,std::string,int [,int])

permissions_deny( (directory)arg1, (routine_type)arg2, (str)arg3, (str)arg4, (int)arg5 [, (int)arg6]) -> task :
    disable a permission based on wildcard specification (task based)

    C++ signature :
        saga::task permissions_deny(saga::name_space::directory,saga::python::routine_type,std::string,std::string,int [,int])

permissions_deny( (directory)arg1, (url)arg2, (str)arg3, (int)arg4 [, (int)arg5]) -> None :
    disable a permissionon a given this namespace entry (plain)

    C++ signature :
        void permissions_deny(saga::name_space::directory,saga::url,std::string,int [,int])

permissions_deny( (directory)arg1, (routine_type)arg2, (url)arg3, (str)arg4, (int)arg5 [, (int)arg6]) -> task :
    disable a permissionon a given this namespace entry (task based)

    C++ signature :
        saga::task permissions_deny(saga::name_space::directory,saga::python::routine_type,saga::url,std::string,int [,int])

Overrides: entry.permissions_deny

read_link(...)

 

read_link( (directory)arg1, (url)arg2) -> url :
    returns the name of the items the given entry is linked to (plain)

    C++ signature :
        saga::url read_link(saga::name_space::directory,saga::url)

read_link( (directory)arg1, (routine_type)arg2, (url)arg3) -> task :
    returns the name of the items the given entry is linked to (task based)

    C++ signature :
        saga::task read_link(saga::name_space::directory,saga::python::routine_type,saga::url)

read_link( (directory)arg1, (str)arg2) -> url :
    returns the name of the items the given entry is linked to (plain)

    C++ signature :
        saga::url read_link(saga::name_space::directory,std::string)

read_link( (directory)arg1, (routine_type)arg2, (str)arg3) -> task :
    returns the name of the items the given entry is linked to (task based)

    C++ signature :
        saga::task read_link(saga::name_space::directory,saga::python::routine_type,std::string)

Overrides: entry.read_link

remove(...)

 

remove( (directory)arg1, (url)arg2 [, (int)arg3]) -> None :
    removes the given item (plain)

    C++ signature :
        void remove(saga::name_space::directory,saga::url [,int])

remove( (directory)arg1, (routine_type)arg2, (url)arg3 [, (int)arg4]) -> task :
    removes the given item (task based)

    C++ signature :
        saga::task remove(saga::name_space::directory,saga::python::routine_type,saga::url [,int])

remove( (directory)arg1, (str)arg2 [, (int)arg3]) -> None :
    removes the given item (plain)

    C++ signature :
        void remove(saga::name_space::directory,std::string [,int])

remove( (directory)arg1, (routine_type)arg2, (str)arg3 [, (int)arg4]) -> task :
    removes the given item (task based)

    C++ signature :
        saga::task remove(saga::name_space::directory,saga::python::routine_type,std::string [,int])

remove( (directory)arg1, (str)arg2 [, (int)arg3]) -> None :
    removes the given items based on wildcard specification (plain)

    C++ signature :
        void remove(saga::name_space::directory,std::string [,int])

remove( (directory)arg1, (routine_type)arg2, (str)arg3 [, (int)arg4]) -> task :
    removes the given items based on wildcard specification (task based)

    C++ signature :
        saga::task remove(saga::name_space::directory,saga::python::routine_type,std::string [,int])

Overrides: entry.remove