Skip to content

Instantly share code, notes, and snippets.

@reduardo7
Created September 24, 2018 23:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save reduardo7/7d3d4e105b4dd1533671b89e11c553b7 to your computer and use it in GitHub Desktop.
Save reduardo7/7d3d4e105b4dd1533671b89e11c553b7 to your computer and use it in GitHub Desktop.
Windows PowerShell - Files Details
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