• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Searching periods in all file names

claudineintexas

Junior Member
Is there a way to search for names containing periods that will exclude the file extension? For example, I have two .txt files, one named "Jane Smith" and another named "Jane.Smith". If I try and do an advanced search, it will show both files because they both end with the .txt extension. I need to remove all periods in file names to migrate my files to OneDrive for Business on SharePoint 2013, and I have literally thousands of files to go through to find the ones that must be renamed.

If this is the wrong forum please let me know.

I appreciate any help solving this issue!
 
Use quoats, ie, "Jane.Smith" or even "e.S", The caps may not matter unless you specify select exact spelling, But that may give zero return.
 
Use any app that can do Global File Find (Win 7 search would do too).

Put in the search parameters *.*.txt or and *.*.doc etc.



😎
 
Use any app that can do Global File Find (Win 7 search would do too).

Put in the search parameters *.*.txt or and *.*.doc etc.



😎

Yeah, you're gonna have to break it down to explicit filetypes if you're just using windows search. A more robust searching/indexing app would be able to use something like "*.*".* to find all filenames with a period in them.
 
Yeah, you're gonna have to break it down to explicit filetypes if you're just using windows search. A more robust searching/indexing app would be able to use something like "*.*".* to find all filenames with a period in them.

Unfortunately there are many system (and other unrelated) files that have "." in the middle

If I put *.*".* in searching my drive I get a list of few thousand files, only 20 of them is with the type of extensions that the OP is looking for.

It takes much less time to put few lines with .txt .doc .docx and few other extensions than to sift through everything.




😎
 
Sounds like you need a renaming utility, not just a search utility. Check out Bulk Rename Utility. I think it can do what you're asking, for free. Be sure to try on a test folder first!
 
a powershell script could easily find all files like that, move all files with "." in the filename, then rename them after move.
 
DIR *.* /S >somefile.txt

then open that in a text editor and use a regular expression

Came to say this, but with one variation:
dir *.*.* /s/b>output.txt

...but I just tested and it seems to return *all* files and folders. Even these variations returned EVERYTHING:
dir *?.?*.* /s/b>output.txt
dir *?*.*?*.* /s/b>output.txt

I dunno...
 
Last edited:
Back
Top