File.IsHidden Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Tests whether the file named by this abstract pathname is a hidden file.
public virtual bool IsHidden { [Android.Runtime.Register("isHidden", "()Z", "GetIsHiddenHandler")] get; }
[<get: Android.Runtime.Register("isHidden", "()Z", "GetIsHiddenHandler")>]
member this.IsHidden : bool
Property Value
true
if and only if the file denoted by this
abstract pathname is hidden according to the conventions of the
underlying platform
- Attributes
Remarks
Tests whether the file named by this abstract pathname is a hidden file. The exact definition of <em>hidden</em> is system-dependent. On UNIX systems, a file is considered to be hidden if its name begins with a period character ('.'
). On Microsoft Windows systems, a file is considered to be hidden if it has been marked as such in the filesystem.
Added in 1.2.
Java documentation for java.io.File.isHidden()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.