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

interface XSimpleFileAccess3
Base Interfaces
XSimpleFileAccess3XSimpleFileAccess2XSimpleFileAccess

XSimpleFileAccess2
(referenced interface's summary:)

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( 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( 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 FileURL
URL of the file
Parameter bHidden
true; "hidden" flag will be set, false; "hidden" flag will be reset
Top of Page