<div class="meta" robots="noindex">

</div>

Property

# FolderItem.Alias

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

<div class="warning">

<div class="title">

Warning

</div>

This item was deprecated in version 2019r2. Please use `FolderItem.IsAlias<folderitem.isalias>` as a replacement.

</div>

## Description

Returns `True</api/language/true>` if the item is an <span class="title-ref">Alias</span>.

## Notes

In most cases, a FolderItem is going to resolve the <span class="title-ref">Alias</span> to point to the actual file. If you need the actual <span class="title-ref">Alias</span> itself, then you should use `FolderItem.ChildAt<folderitem.childat>`, `FolderItem.Child<folderitem.child>` or `FolderItem(f as FolderItem)<folderitem.constructor0>`.

## Sample code

``` xojo
Dim f As New FolderItem
If f.Alias Then
  MsgBox("The folderitem is an alias.")
Else
  MsgBox("The folderitem is not an alias.")
End If
```

## Compatibility

All project types on all supported operating systems.

## See also

`FolderItem</api/files/folderitem>` parent class; `FolderItem.ChildAt<folderitem.childat>`, `FolderItem.Child<folderitem.child>`
