Last active
December 2, 2017 00:14
-
-
Save Szeraax/f644bfba072b4ef360ee85fbeeb6ab1f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir 1; mkdir 2; | |
new-item 1\FILENAME.txt; new-item 2\FILENAME.txt; | |
ls *\FILENAME.txt | Select -Exp Fullname ; | |
ls *\FILENAME.txt | sort -desc Fullname | Select -Exp Fullname ; | |
ls *\FILENAME.txt | sort -desc fullname | Sort Name | Select -Exp Fullname | |
# You can do this without the Select -Exp Fullname, but this is easier to see what its doing. | |
Another test: | |
$Data = "Fullname,Name | |
one\FILENAME.txt,FILENAME.txt | |
two\FILENAME.txt,FILENAME.txt" -split "`n" | ConvertFrom-Csv | |
$Data | |
$Data | Sort -Desc Fullname | |
$Data | Sort -Desc Fullname | Sort Name | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment