Base interface for classes that create, open and/or delete resources.
interface
|
ICanCreateOpenDelete
|
base of
|
IFileSystem
|
Is this object capable of creating new resources?
property
|
CanCreate
{
get
}
|
||
type
|
bool
|
||
value
|
true
if
this
object
can
create
new
resources,
false
if
it
cannot.
|
Is this object capable of deleting files?
property
|
CanDelete
{
get
}
|
||
type
|
bool
|
||
value
|
true
if
this
object
can
delete
resources,
false
if
it
cannot. |
Is this object capable of opening existing files?
property
|
CanOpen
{
get
}
|
||
type
|
bool
|
||
value
|
true
if
this
object
can
open
existing
resources,
false
if
it
cannot.
|