I just finished a long crawl of our file server. Unfortunately all of the URLs resulting from the SMB crawl were stored incorrectly with double-slashes after my root scan path. Probably occurred because I left a backslash at the end of my SMB path.
Root Scan Path: \\fileserve.company.com\share\
Crawl Stored URL: file://fileserve.company.com/share//folder/file.txt
(notice the extra slash before the folder in the Crawl stored URL)
Correct Scan Path: \\fileserve.company.com\share
URL Should be: file://fileserve.company.com/share/folder/file.txt
Is there a way for me to bulk update all of the URLs to remove the extra slash? Or do I have to reperform the crawl to it sees all new files?
Thank you,
-Dan