我正在编写一个代码来监视多个路径并删除不正确颜色配置文件的jpg文件。我想在转换文件后将文件移回原始路径
powershell脚本使用exiftool监视多个路径:
'E:\' + $ComputerName + '\Capture One Session\Output\Market1'
'E:\' + $ComputerName + '\Capture One Session\Output\Market2'
如果exiftool ProflieDescrtiption不喜欢srgb,则该文件将被移动到转换位置。
# If colorSpace is not srgb
If("$colorSpace" -notlike "*srgb*")
{
# sideline theAsset to the Image Magick conversionStage
robocopy "$assetsFolder" "$conversionStage" "$theFileName" /mov /xo /R:1 /W:2 /MT:32
}
将文件转换为正确的颜色配置文件后,我希望文件移回其原始路径(market1或market2)。
我需要帮助的是找出一种有效的方法让jpgs回到原来的路径(market1或market2)。请记住,marketplace1和marketplace2路径在处理jpgs时从另一个用户接收图像。也就是说,在任何给定时间,两个位置可能会有多个jpg进入$ converstionStage。
感谢先进的任何帮助!