NAME
Test-Path
SYNOPSIS
Determines whether all elements of a file or directory path exist.SYNTAX
Test-Path [-Credential
] [-Exclude ] [-Filter ] [-Include ] [-IsValid] -LiteralPath
[-NewerThan ] [-OlderThan ] [-PathType {Any | Container | Leaf}] [-UseTransaction] [
] Test-Path [-Path]
[-Credential ] [-Exclude ] [-Filter ] [-Include
] [-IsValid] [-NewerThan ] [-OlderThan ] [-PathType {Any | Container | Leaf}] [-UseTransaction] [
] Test-Path [-NewerThan
] [-OlderThan ] [ ] DESCRIPTION
The Test-Path cmdlet determines whether all elements of the path exist. It returns $True if all elements exist and
$False if any are missing. It can also tell whether the path syntax is valid and whether the path leads to a
container or a terminal or leaf element.In a file system drive, Test-Path can tell whether a path is valid, whether all elements of the path exist, or
report whether a path leads to a file or a directory. It can also tell whether a file was changed before or after a particular date.Note: This custom cmdlet help file explains how the Test-Path cmdlet works in a file system drive. For information
about the Test-Path cmdlet in all drives, type "Get-Help Test-Path -Path $null" or see Test-Path at
http://go.microsoft.com/fwlink/?LinkID=113418.PARAMETERS
-OlderThan
Returns "True" when the LastWriteTime value of a file is less than the specified date. Otherwise, it returns"False". Enter a DateTime object, such as one that the Get-Date cmdlet returns, or a string that can be
converted to a DateTime object, such as "August 10, 2011 2:00 PM". OlderThan is a dynamic parameter that works only on file system paths. It was introduced in Windows PowerShell 3.0. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false-NewerThan
Returns "True" when the LastWriteTime value of a file is greater than the specified date. Otherwise, itreturns "False". Enter a DateTime object, such as one that the Get-Date cmdlet returns, or a string that can
be converted to a DateTime object, such as "August 10, 2011 2:00 PM". NewerThan is a dynamic parameter that works only on file system paths. It was introduced in Windows PowerShell 3.0. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false-Credential
Specifies a user account that has permission to perform this action. The default is the current user. Type a user name, such as User01 or Domain01\User01. Or, enter a PSCredential object, such as one generated bythe Get-Credential cmdlet. If you type a user name, this cmdlet prompts you for a password.
This parameter is not supported by any providers installed with Windows PowerShell. Required? false Position? named Default value NoneAccept pipeline input? True (ByPropertyName)
Accept wildcard characters? false-Exclude
Specifies items that this cmdlet omits. The value of this parameter qualifies the Path parameter. Enter a pathelement or pattern, such as "*.txt". Wildcard characters are permitted.
Required? false Position? named Default value None Accept pipeline input? False Accept wildcard characters? false-Filter
Specifies a filter in the format or language of the provider. The value of this parameter qualifies the Path parameter. The syntax of the filter, including the use of wildcard characters, depends on the provider. Filters are more efficient than other parameters, because the provider applies them when it retrieves the objects instead of having Windows PowerShell filter the objects after they are retrieved. Required? false Position? named Default value None Accept pipeline input? False Accept wildcard characters? false-Include
Specifies paths that this cmdlet tests. The value of this parameter qualifies the Path parameter. Enter a pathelement or pattern, such as "*.txt". Wildcard characters are permitted.
Required? false Position? named Default value None Accept pipeline input? False Accept wildcard characters? false-IsValid [
Indicates that this cmdlet tests the syntax of the path, regardless of whether the elements of the path exist.] This cmdlet returns $True if the path syntax is valid and $False if it is not.
Required? false Position? named Default value False Accept pipeline input? False Accept wildcard characters? false-LiteralPath
Specifies a path to be tested. Unlike Path , the value of the LiteralPath parameter is used exactly as it is typed. No characters are interpreted as wildcard characters. If the path includes escape characters, enclose it in single quotation marks. Single quotation marks tell Windows PowerShell not to interpret any characters as escape sequences. Required? true Position? named Default value NoneAccept pipeline input? True (ByPropertyName)
Accept wildcard characters? false-Path
Specifies a path to be tested. Wildcard characters are permitted. If the path includes spaces, enclose it in quotation marks. Required? true Position? 0 Default value NoneAccept pipeline input? True (ByPropertyName, ByValue)
Accept wildcard characters? false-PathType
Specifies the type of the final element in the path. This cmdlet returns $True if the element is of the
specified type and $False if it is not. The acceptable values for this parameter are:
- Container. An element that contains other elements, such as a directory or registry key. - Leaf. An element
that does not contain other elements, such as a file. - Any. Either a container or a leaf. Tells whether the
final element in the path is of a particular type. Required? false Position? named Default value None Accept pipeline input? False Accept wildcard characters? false-UseTransaction [
Includes the command in the active transaction. This parameter is valid only when a transaction is in progress. For more information, see Includes the command in the active transaction. This parameter is valid only when a transaction is in progress. For more information, see Required? false Position? named Default value False Accept pipeline input? False Accept wildcard characters? false] This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216). INPUTS
System.StringYou can pipe a string that contains a path (but not a literal path) to Test-Path.
OUTPUTS
System.BooleanNOTES
The cmdlets that contain the Path noun (the Path cmdlets) work with path names and return the names in a concise format that all Windows PowerShell providers can interpret. They are designed for use in programs and scripts where you want to display all or part of a path name in a particular format. Use them as you would useDirname , Normpath , Realpath , Join *, or other path manipulators.
You can use the Path cmdlets with several providers, including the FileSystem, Registry, and Certificateproviders. Test-Path is designed to work with the data exposed by any provider. To list the providers
available in your session, type `Get-PSProvider`. For more information, see about_Providers.
*
-------------------------- EXAMPLE 1 --------------------------
C:\PS>Test-Path -Path "C:\Documents and Settings\NicoleH"
Description-----------
This command tells whether all elements in the path exist, that is, the C: directory, the Documents and Settings directory, and the NicoleH directory. If any are missing, the cmdlet returns FALSE. Otherwise, it returns TRUE.-------------------------- EXAMPLE 2 --------------------------
C:\PS>Test-Path -Path $profile
C:\PS>Test-Path -Path $profile -IsValid
Description-----------
These commands test the path to the Windows PowerShell profile. The first command determines whether all elements in the path exist. The second command determines whether the syntax of the path is correct. In this case, the path is FALSE, but the syntax is correct (TRUE). These commandsuse $profile, the automatic variable that points to the location for the profile, even if the profile does not
exist. For more information about automatic variables, see about_Automatic_Variables.-------------------------- EXAMPLE 3 --------------------------
C:\PS>Test-Path -Path "C:\CAD\Commercial Buildings\*" -Exclude *.dwg
Description-----------
This command tells whether there are any files in the Commercial Buildings directory other than .dwg files. The command uses the Path parameter to specify the path. Because it includes a space, the path is enclosed in quotes. The asterisk at the end of the path indicates the contents of the Commercial Building directory. (With long paths, like this one, type the first few letters of the path, and then use the TAB key to complete the path.) The command uses the Exclude parameter to specify files that will be omitted from the evaluation. In this case, because the directory contains only .dwg files, the result is FALSE.-------------------------- EXAMPLE 4 --------------------------
C:\PS>Test-Path -Path $profile -PathType Leaf
Description-----------
This command tells whether the path stored in the $profile variable leads to a file. In this case, because the
Windows PowerShell profile is a .ps1 file, the cmdlet returns TRUE.-------------------------- EXAMPLE 5 --------------------------
C:\PS>Test-Path -Path HKLM:\Software\Microsoft\PowerShell\1\ShellIds\Microsoft.PowerShell
TRUEC:\PS> Test-Path -Path HKLM:\Software\Microsoft\PowerShell\1\ShellIds\Microsoft.PowerShell\ExecutionPolicy
FALSE Description-----------
These commands use the Test-Path cmdlet with the Windows PowerShell registry provider.
The first command tests whether the registry path to the Microsoft.PowerShell registry key is correct on the system. If Windows PowerShell is installed correctly, the cmdlet returns TRUE.Test-Path does not work correctly with all Windows PowerShell providers. For example, you can use Test-Path to
test the path to a registry key, but if you use it to test the path to a registry entry, it always returns FALSE, even if the registry entry is present.-------------------------- EXAMPLE 6 --------------------------
C:\PS>Test-Path $pshome\PowerShell.exe -NewerThan "July 13, 2009"
Description-----------
This command uses the NewerThan dynamic parameter to determine whether the PowerShell.exe file on the computer is newer than July 13, 2009. The NewerThan parameter works only in file system drives.RELATED LINKS
Online version: http://technet.microsoft.com/library/hh847828(v=wps.630).aspxTest-Path (generic); http://go.microsoft.com/fwlink/?LinkID=113418
FileSystem ProviderClear-Content
Get-Content
Get-ChildItem
Get-Content
Get-Item
Remove-Item
Set-Content
Test-Path