need to change file created date based on csv
问题 Good evening everyone. I have been able to change date created attribute of a file using the following command $(Get-Item test1.html).CreationTime=$(Get-Date "11/24/2010 06:00 am") My problem is that I have 10000 files that need to have this done based on a csv file. CSV has two columns file name or and file created date. CSV and files are in same folder. How can I rename the files based on the corresponding date in column 2 eg. 1.pdf 2010/12/12 2.pdf 2011/13/01 3.pdf 1989/12/12 etc Thanks in