Is there any way to search for specific version of DWG files?
Other than *.dwg startwith:binarycontent:AC1015
AC1015 = DWG v2000
[Solved] AutoCAD DWG files version property
-
w64bit
- Posts: 338
- Joined: Wed Jan 09, 2013 9:06 am
[Solved] AutoCAD DWG files version property
You do not have the required permissions to view the files attached to this post.
Last edited by w64bit on Wed Aug 31, 2022 5:37 pm, edited 1 time in total.
-
void
- Developer
- Posts: 19903
- Joined: Fri Oct 16, 2009 11:31 pm
Re: AutoCAD DWG files version property
I'm not familiar with DWG file specification.
Please try searching for:
*.dwg content-max-size:6 regex:binarycontent:^AC(\d\d\d\d) addcolumn:regmatch1
The version? (eg: 1015) is shown in the regex match 1 column.
Please try searching for:
*.dwg content-max-size:6 regex:binarycontent:^AC(\d\d\d\d) addcolumn:regmatch1
The version? (eg: 1015) is shown in the regex match 1 column.
-
w64bit
- Posts: 338
- Joined: Wed Jan 09, 2013 9:06 am
Re: AutoCAD DWG files version property
Excellent.
Thank you.
Thank you.