# Folder A Folder object is of type *PsObject* and represents a folder in Vault.\ The \$folder object is dynamically generated based on the defined Folder *Properties* in Vault.\ The properties are named the same as in Vault, including whitespaces. If you want to access such a property you have to enclose it in single quotes. ## Syntax ```{code-block} powershell :linenos: $folder.'Folder Path' ``` ## Localization \$folder is supporting this [feature](): - all active properties can be accessed via the displayName - all active properties can be accessed via \_SystemName **except:** the ones with guids (=user defined) ## Example: \$folder.'Folder Path' can be used when working against english vault \$folder.Ordnerpfad can be used when working against german vault \$folder.\_FolderPath can be used on all vault language environments ## Examples **Folder-object** on an english environment: ```{code-block} powershell :linenos: Created By : Administrator _CreateUserName : Administrator Folder Path : $/Designs/Vault _FolderPath : $/Designs/Vault Name : Vault _Name : Vault Property Compliance : Compliant _Compliance : Compliant Category Name : Folder _CategoryName : Folder Category Glyph : Autodesk.DataManagement.Client.Framework.Vault.Currency.Properties.ImageInfo _CategoryGlyph : Autodesk.DataManagement.Client.Framework.Vault.Currency.Properties.ImageInfo Lifecycle Definition : Basic Release Process _LifeCycleDefinition : Basic Release Process State : Work in Progress _State : Work in Progress State Glyph : Autodesk.DataManagement.Client.Framework.Vault.Currency.Properties.ImageInfo _StateGlyph : Autodesk.DataManagement.Client.Framework.Vault.Currency.Properties.ImageInfo Create Date : 11.04.2016 15:53:47 _CreateDate : 11.04.2016 15:53:47 Type Tag : _TypeTag : Share Path : _SharePath : Obsolete : False _Obsolete : False Entity Type : Folder _EntityType : Folder Entity Type ID : FLDR _EntityTypeID : FLDR Entity Icon : Autodesk.DataManagement.Client.Framework.Vault.Currency.Properties.ImageInfo _EntityIcon : Autodesk.DataManagement.Client.Framework.Vault.Currency.Properties.ImageInfo Path : $/Designs _EntityPath : $/Designs Full Path : $/Designs/Vault _FullPath : $/Designs/Vault Link Target Path : _LinkTargetPath : Create Date (Date Only) : 11.04.2016 00:00:00 Create Date (Time Only) : 01.01.0001 15:53:00 Type Description : Folder _EntityDescription : Folder Folder Create Date : 11.04.2016 15:53:47 _Folder!CreateDate : 11.04.2016 15:53:47 Id : 26766 MasterId : 26766 PersistentId : PersistentMasterId : IsLibrary : False ThinClientHyperLink : http://localhost/AutodeskTC/Vault/explore/folder/26766 ThickClientHyperLink : http://localhost/AutodeskDM/Services/EntityDataCommandRequest.aspx?Va ult=Vault&ObjectId=%24%2FDesigns%2FVault&ObjectType=Folder&Command=Select ```