How could I include ONLY files in root folder?
- Posts: 6
- Joined: 5 Feb 2013
I have *.aspx anywhere in a folder tree. But I want to include only those in root folder. How could I do this (or excludes all *.aspx under subfolders)? Thanks!
- Site Admin
- Posts: 7280
- Joined: 9 Dec 2007
An exclude filter entry "?*\*.aspx" will do. "?*" is like the ".+" in regex, while the "\" makes sure to match items in subfolders only. See also help file "exclude items" for a general explanation.
- Posts: 6
- Joined: 5 Feb 2013
Thanks! It works!
I have gone through the Help but did not find this "?*" or "**" which I saw from another thread. Are there anymore example about filtering online?
I have gone through the Help but did not find this "?*" or "**" which I saw from another thread. Are there anymore example about filtering online?
- Site Admin
- Posts: 7280
- Joined: 9 Dec 2007
Help file chapter "Exclude Items" gives a general overview.