This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Removes incorrect data from *.tcx files exported from the Polar Flow | |
# web site so they can be uploaded to the Garmin web site. | |
# More info: https://forums.garmin.com/showthread.php?165708-Polar-Flow-TCX-export-to-Garmin-Connect | |
# | |
$SourceDir = "C:\Users\Gianluca\OneDrive\Documents\Health\PolarFlow"; | |
$DestinationDir = "C:\Users\Gianluca\OneDrive\Documents\Health\ExportGarmin"; | |
Get-ChildItem $SourceDir -Include "*.tcx" -Recurse | | |
Where-Object { !(Test-Path (Join-Path $DestinationDir $_.Name)) } | |