What is the most efficient way to see where a file is saved?
What is the most efficient way to see where a file is saved?
In an assembly, what is the most efficient way to see the save location of an assembly or part in the feature tree?
Currently, I open the assembly or part, then do a "Save As". I feel like there must be a better way.
Thanks.
Currently, I open the assembly or part, then do a "Save As". I feel like there must be a better way.
Thanks.
Right click on it and go to "component properties
This also can do:
Go to full postThis also can do:
SW 2024 SP 5.0
Windows 11
Windows 11
- AlexLachance
- Posts: 2179
- Joined: Thu Mar 11, 2021 8:14 am
- Location: Quebec
- x 2361
- x 2011
Re: What is the most efficient way to see where a file is saved?
Right click on it and go to "component properties
This also can do:
This also can do:
- Glenn Schroeder
- Posts: 1520
- Joined: Mon Mar 08, 2021 11:43 am
- Location: southeast Texas
- x 1758
- x 2129
Re: What is the most efficient way to see where a file is saved?
Click on the file name in the tree. Select the "Component Properties" icon. The file path will be in the dialog box that pops up.
"On the days when I keep my gratitude higher than my expectations, well, I have really good days."
Ray Wylie Hubbard in his song "Mother Blues"
Ray Wylie Hubbard in his song "Mother Blues"
Re: What is the most efficient way to see where a file is saved?
Is there any way to make use of this outside of a drawing?
https://help.solidworks.com/2022/englis ... erties.htm
I was too slow.
https://help.solidworks.com/2022/englis ... erties.htm
I was too slow.
-
I may not have gone where I intended to go, but I think I have ended up where I needed to be. -Douglas Adams
I may not have gone where I intended to go, but I think I have ended up where I needed to be. -Douglas Adams
Re: What is the most efficient way to see where a file is saved?
Component Properties, as was already suggested. If you want to overview paths of all components, Pack & Go is pretty good that.
Anything further for that, I often setup special CUSTOMTOOLS Export profile for my customers just so that to get an overview of the whole assembly and whatever Custom Properties (or other special fields) are important for them. That can also be exported to Excel with component previews, but often just visiting the Export windows gives very important instant feedback for the designer.
Anything further for that, I often setup special CUSTOMTOOLS Export profile for my customers just so that to get an overview of the whole assembly and whatever Custom Properties (or other special fields) are important for them. That can also be exported to Excel with component previews, but often just visiting the Export windows gives very important instant feedback for the designer.
Product Manager, CUSTOMTOOLS for SOLIDWORKS
Over decade of experience around SW, PDM, and related ERP integrations.
Tech-oriented; once a programmer, always a programmer.
https://www.customtools.info/
https://www.youtube.com/user/CustomTools4SW/
Over decade of experience around SW, PDM, and related ERP integrations.
Tech-oriented; once a programmer, always a programmer.
https://www.customtools.info/
https://www.youtube.com/user/CustomTools4SW/
- AlexLachance
- Posts: 2179
- Joined: Thu Mar 11, 2021 8:14 am
- Location: Quebec
- x 2361
- x 2011
Re: What is the most efficient way to see where a file is saved?
Hey Simo,CT-Simo wrote: ↑Fri Oct 28, 2022 3:42 am Component Properties, as was already suggested. If you want to overview paths of all components, Pack & Go is pretty good that.
Anything further for that, I often setup special CUSTOMTOOLS Export profile for my customers just so that to get an overview of the whole assembly and whatever Custom Properties (or other special fields) are important for them. That can also be exported to Excel with component previews, but often just visiting the Export windows gives very important instant feedback for the designer.
Could it be possible to export in excel and then import back? That would be sweet!
Re: What is the most efficient way to see where a file is saved?
YesAlexLachance wrote: ↑Fri Oct 28, 2022 8:26 am Hey Simo,
Could it be possible to export in excel and then import back? That would be sweet!
Product Manager, CUSTOMTOOLS for SOLIDWORKS
Over decade of experience around SW, PDM, and related ERP integrations.
Tech-oriented; once a programmer, always a programmer.
https://www.customtools.info/
https://www.youtube.com/user/CustomTools4SW/
Over decade of experience around SW, PDM, and related ERP integrations.
Tech-oriented; once a programmer, always a programmer.
https://www.customtools.info/
https://www.youtube.com/user/CustomTools4SW/
- Stefan Sterk
- Posts: 37
- Joined: Tue Aug 10, 2021 2:40 am
- x 51
- x 77
Re: What is the most efficient way to see where a file is saved?
I got this macro (Code below) that opens the file location in the Windows Explorer for the selected component.
Code: Select all
Option Explicit
Sub main()
Dim swApp As SldWorks.SldWorks
Dim swModel As SldWorks.ModelDoc2
Dim swSelMgr As SldWorks.SelectionMgr
Dim swComponent As SldWorks.Component2
Dim Path As String
Set swApp = Application.SldWorks
Set swModel = swApp.ActiveDoc
If swModel Is Nothing Then Exit Sub
' Get the selected component feature or entity
Set swSelMgr = swModel.SelectionManager
Set swComponent = swSelMgr.GetSelectedObjectsComponent4(1, -1)
If Not swComponent Is Nothing Then
Path = swComponent.GetPathName
Else
Path = swModel.GetPathName
End If
Shell "C:\Windows\explorer.exe /select," & Path, vbMaximizedFocus
End Sub
- DanPihlaja
- Posts: 846
- Joined: Thu Mar 11, 2021 9:33 am
- Location: Traverse City, MI
- x 810
- x 978
Re: What is the most efficient way to see where a file is saved?
For a part or assembly that you have open, do this:
Tap R to bring up recent documents Then select "show in folder" for that document. It won't work for components of assemblies unless you open them separately.
Tap R to bring up recent documents Then select "show in folder" for that document. It won't work for components of assemblies unless you open them separately.
-Dan Pihlaja
Solidworks 2022 SP4
2 Corinthians 13:14
Solidworks 2022 SP4
2 Corinthians 13:14
Re: What is the most efficient way to see where a file is saved?
Before we used a PDM system, I used to click on Save As and the save dialogue would bring up the folder the model was stored in.
Ideas are simple, once you've thought of them