我的路径中有 8 个文件夹..
我可以使用 foreach 将每个文件夹作为输入传递。
这 8 个文件夹中的每个文件夹中都有多个文件夹。
我需要进入 8 个文件夹中的每个文件夹中的至少四个文件夹,并且需要获取该文件夹中文件的最后写入时间,
这是示例代码
$ServerList = Get-Content "C:\Documents and Settings\a528602\Desktop\Tools\Store Server\Servers.txt"
Foreach($ServerName in $ServerList)
{
get-childitem $ServerName
$numberoffolders=(get-childitem).count
#irrespective number of folders in the each folder I need to pick any four folders and get the last written time stamp
for(I=0;i<4;i++)
{
$folder1 = get-childitem $ServerName Need to get any one folder
$folder1_time = ?
}
}
有人可以帮助编写powershell脚本。