Created
September 24, 2018 23:31
-
-
Save reduardo7/7d3d4e105b4dd1533671b89e11c553b7 to your computer and use it in GitHub Desktop.
Windows PowerShell - Files Details
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
Get-Item g:\* | Foreach { "Nombre: " + $_.Name + ", Creado: " + $_.CreationTime + "; Modificado: " + $_.LastWriteTime + ", Tamaño: " + $_.Length + " k | |
b" } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment