Dateien, die kein GPS daten beinhalten, ignorieren!
was kann ich tun damit Advanced Renamer die Dateien, die kein GPS information beinhalten, ignoriert, nicht verarbeitet?
ist es so schwer für den "Spezialisten"? oder ist es nicht machbar?
ist es so schwer für den "Spezialisten"? oder ist es nicht machbar?
Reply to #1:
To make Aren ignore files that do not contain GPS information is simplicity itself!
Just don't add them to Aren in the first place. *bad-dap teeesssh* (^_^)
Seriously, I'd script PowerShell to filter the files and call Aren's command line.
Theoretically, you could use the "Mark" -> "Unmark by pattern..." context menu to do this. But I can't get that to work at all.
Better yet, you could use a script method that unchecks the files if Kim added this often requested feature.
Please join me in asking Kim to ***** Allow JS to mark and unmark files in the list. ****
The only thing I could get to work was a Script-method added as the last method of the batch.
Use code like:
if ( ! item.GPSExists) {
/*-- Restore anything that has been changed to the original values.
Use code like:
item.newModifiedDate = item.modifiedDate;
etc., as needed.
*/
return item.name; // item.name is the original file name before any batch methods ran.
}
To make Aren ignore files that do not contain GPS information is simplicity itself!
Just don't add them to Aren in the first place. *bad-dap teeesssh* (^_^)
Seriously, I'd script PowerShell to filter the files and call Aren's command line.
Theoretically, you could use the "Mark" -> "Unmark by pattern..." context menu to do this. But I can't get that to work at all.
Better yet, you could use a script method that unchecks the files if Kim added this often requested feature.
Please join me in asking Kim to ***** Allow JS to mark and unmark files in the list. ****
The only thing I could get to work was a Script-method added as the last method of the batch.
Use code like:
if ( ! item.GPSExists) {
/*-- Restore anything that has been changed to the original values.
Use code like:
item.newModifiedDate = item.modifiedDate;
etc., as needed.
*/
return item.name; // item.name is the original file name before any batch methods ran.
}