소스 검색

Fix parsing datetime with OS culture

master
Figg 1 개월 전
부모
커밋
45e9183e10
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      ArrangePictures.ps1

+ 2
- 2
ArrangePictures.ps1 파일 보기

@@ -28,8 +28,8 @@ function Get-APFileDateTaken {
28 28
         $PropIndex
29 29
     ) -replace $CharWhiteList
30 30
 
31
-    
32
-    $DateTaken = try { [DateTime]($DateTaken) } catch { $null }
31
+    $culture = Get-Culture
32
+    $DateTaken = try { [DateTime]::Parse($DateTaken, $culture) } catch { $null }
33 33
     return $DateTaken
34 34
 }
35 35
 

Loading…
취소
저장