:: com :: sun :: star :: ucb ::

interface XSimpleFileAccess3
Base Interfaces
XSimpleFileAccess3
┗ ::com::sun::star::ucb::XSimpleFileAccess2
   ┗ ::com::sun::star::ucb::XSimpleFileAccess

::com::sun::star::ucb::XSimpleFileAccess2
(referenced interface's summary:)
This is an extension to the interface ::com::sun::star::ucb::XSimpleFileAccess .
Description
This is an extension to the interface ::com::sun::star::ucb::XSimpleFileAccess2 .
Since
OpenOffice 1.1.2

Methods' Summary
isHidden Checks if a file is "hidden"  
setHidden Sets the "hidden" of a file according to the boolean parameter, if the actual process has the right to do so and the used operation system supports this operation.  
Methods' Details
isHidden
boolean
isHidden( [in] string  FileURL )
raises( ::com::sun::star::ucb::CommandAbortedException,
::com::sun::star::uno::Exception );

Description
Checks if a file is "hidden"
Parameter FileURL
URL to be checked
Returns
true, if the given File is "hidden", false otherwise
setHidden
void
setHidden( [in] string  FileURL,
[in] boolean  bHidden )
raises( ::com::sun::star::ucb::CommandAbortedException,
::com::sun::star::uno::Exception );

Description
Sets the "hidden" of a file according to the boolean parameter, if the actual process has the right to do so and the used operation system supports this operation.
Parameter bHidden
true; "hidden" flag will be set, false; "hidden" flag will be reset
Top of Page