How to modify Find Files GUI file size threshold
You are now following this question
- You will see updates in your followed content feed.
- You may receive emails, depending on your communication preferences.
An Error Occurred
Unable to complete the action because of changes made to the page. Reload the page to see its updated state.
Show older comments
0 votes
Share a link to this question
In the "Find Files" GUI there is a "Skip files over" field that sets an upper limit on the file size to include in the search. For me, it seems to be perpetually greyed out, and therefore cannot be modified. How do I enable modification of this setting?

Accepted Answer
Matt J
on 25 Aug 2026 at 19:02
1 vote
After consulting Tech Support, I have learned that the field will re-enable if non-empty text is entered into the "Find Files containing text" field. Even if this field is not relevant to your search, a temporary, dummy entry can be made just for the purpose of modifying the "Skip files" threshold.

8 Comments
dpb
on 25 Aug 2026 at 23:23
Who wouda' thunk!!?? I'll remove the incorrect answer and did tell the 'bot it was in error.
Matt J
on 26 Aug 2026 at 14:00
Just as a further note, Tech Support has classified this as a bug. However, since the "Skip over files" setting was removed in R2025, it is considered resolved.
Paul
on 26 Aug 2026 at 16:53
Did Tech Support indicate why the "Skip files over" setting was removed from R2025?
Matt J
on 26 Aug 2026 at 17:01
They identified it as a rarely used setting.
dpb
on 26 Aug 2026 at 17:59
But looks like one that could have significant ramifactions on user if actually doing a text search and there were a number of large files in the search path.
Paul
on 26 Aug 2026 at 20:34
"They identified it as a rarely used setting."
Hmm. I'm kinda curious how Mathworks came to that conclusion.
Hmm. I'm kinda curious how Mathworks came to that conclusion.
From their User Experience telemetry, I would assume.
I'd think it still worth a complaint over losing an enhancement beginning with R2026 even if not a terribly common occurrence.
For going forward other than writing a gui front end, a pretty simple workaround would be to package a utiity grep package with a dir() call to filter the size.
d=dir(requestedFileNamePattern); % get the list of possible files
d=d([d.bytes]/1024^2<MAXSIZE_MB); % filter out the big ones
fqn=fullfile({d.folder},{d.name}); % list of fully-qualified names
flist=grep(PATTERN,fqn); % the list of found files
where <grep would be the FEX submission>. The above barest bones could be greatly expanded with options, but simple in concept to implement other than requiring user time to reinvent a wheel that was mostly already there. I've had it in my Utilities folder for 10+ years and find it invaluable; wasn't even aware of the Find Files GUI until this thread; never a need arose it wasn't able to solve easily.
More Answers (0)
Categories
Find more on File Operations in Help Center and File Exchange
Tags
See Also
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)