Page 1 of 1

how to find too long file names for Win 7

Posted: 11 Aug 2011 13:48
by umapati
Is there a script for finding file names that are too long for Win 7, and automatically chopping off the end of the names?

Re: how to find too long file names for Win 7

Posted: 11 Aug 2011 14:00
by highend

Code: Select all

	// Create new tab
	#340;
	goto "?len: > 249 /r";

	$Result = report("{Path}\{Name}<crlf>");
	if ($Result != "") {
		text $Result;
	}
	else {
		msg "No files found.";
	}
	//Close search tab automatically
	#351;
But I don't think that headlessly chopping off file names is such a good idea...

Re: how to find too long file names for Win 7 Apologies

Posted: 11 Aug 2011 14:04
by umapati
Sorry for this post. I've now looked more carefully at help file, and len: > 248 does all I need.