PowerShell 로 실 현 된 파일 동기 화 스 크 립 트 공유


#     、     ,       
$folder_a_path = "D:\a"
$folder_b_path = "D:\b"
#           
$folders_a = gci $folder_a_path -Recurse
foreach ($folder_a in $folders_a)
  {
  #       ,           
  $b = $folder_a.fullname.replace($folder_a_path,$folder_b_path) 
  #          ,          
  If (test-path $b)
    {
     #         ,        ,     ,         
     If (!((gi $b).PSIsContainer))
      {
       #      、        ,                   ,       
       If ((gci $b).lastwritetime -lt $folder_a.lastwritetime)
        {
         copy-item $folder_a.fullname $b -force
        }
      }
    
    }
  #         ,     
  Else
    {
     copy-item $folder_a.fullname $b
    }
    
    }




좋은 웹페이지 즐겨찾기