windows - How to get the creation time for each file and format it -


I can format the time of files with the following command:

  Go- ChildItem Dropbox | Received-date-format "yyyy-MM-dd hh: mm"  

I can get the creation of files with the following command:

  received -ChildItem Dropbox | Selection-object creation time  

When they connect them together they fly. How do I get the creation time in a format?

You property:

  Go-ChildItem Dropbox | Selection-Object-Expand Property Creation Time | Received-date-f "yyyy-MM-dd hh: mm"  

Comments