<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Inventor save to folder named by date automation in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-save-to-folder-named-by-date-automation/m-p/6841481#M69731</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would suggest looking at this event:&amp;nbsp;FileUIEvents.OnFileSaveAsDialog&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the programming help:&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;&lt;/P&gt;
&lt;P&gt;Remarks &lt;BR /&gt;This notification is also sent when the Save command is executed the first time for a file that has not been previously saved. By responding to this event the client can override Inventor's standard behavior of displaying the Save As dialog and provide their own interface to determine the new filename.&lt;/P&gt;
&lt;P&gt;&amp;lt;&amp;lt; &amp;lt;&amp;lt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your code could&amp;nbsp;get the current date and create the&amp;nbsp;folder with&amp;nbsp;the name that you want. I&amp;nbsp;am not&amp;nbsp;finding an existing example that does this but I believe it could meet your requirement.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are several posts on this forum related to&amp;nbsp;the OnFileSaveAsDialog event.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Wayne&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 30 Jan 2017 20:23:12 GMT</pubDate>
    <dc:creator>wayne.brill</dc:creator>
    <dc:date>2017-01-30T20:23:12Z</dc:date>
    <item>
      <title>Inventor save to folder named by date automation</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-save-to-folder-named-by-date-automation/m-p/6833156#M69643</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to make Inventor save in folder, that is named by year and mounth, automatically.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, file is created 6.6.2015, when user click save button it saves file on location:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;\2015\06\new_file...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What are posibilities, datastandard?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm not familiar with DataStandard, cuuld enyone give some tips, steps, for configuration?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;configuration:&lt;/P&gt;&lt;P&gt;Inventor 2016 SP2&lt;/P&gt;&lt;P&gt;Vault 2016&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for any advice,&lt;/P&gt;&lt;P&gt;Gregor Rihtar&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2017 14:51:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-save-to-folder-named-by-date-automation/m-p/6833156#M69643</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-26T14:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor save to folder named by date automation</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-save-to-folder-named-by-date-automation/m-p/6836264#M69683</link>
      <description>&lt;P&gt;Create a new projekt file for each day that have the workspace path pointing at the folder you want.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or use ilogic to copy the new file to a folder with todays date.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want inventor to save in a new directory each day without any "hands on" you have to make a addin.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jan 2017 17:46:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-save-to-folder-named-by-date-automation/m-p/6836264#M69683</guid>
      <dc:creator>JoAntt</dc:creator>
      <dc:date>2017-01-27T17:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor save to folder named by date automation</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-save-to-folder-named-by-date-automation/m-p/6841481#M69731</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would suggest looking at this event:&amp;nbsp;FileUIEvents.OnFileSaveAsDialog&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the programming help:&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;&lt;/P&gt;
&lt;P&gt;Remarks &lt;BR /&gt;This notification is also sent when the Save command is executed the first time for a file that has not been previously saved. By responding to this event the client can override Inventor's standard behavior of displaying the Save As dialog and provide their own interface to determine the new filename.&lt;/P&gt;
&lt;P&gt;&amp;lt;&amp;lt; &amp;lt;&amp;lt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your code could&amp;nbsp;get the current date and create the&amp;nbsp;folder with&amp;nbsp;the name that you want. I&amp;nbsp;am not&amp;nbsp;finding an existing example that does this but I believe it could meet your requirement.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are several posts on this forum related to&amp;nbsp;the OnFileSaveAsDialog event.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Wayne&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jan 2017 20:23:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-save-to-folder-named-by-date-automation/m-p/6841481#M69731</guid>
      <dc:creator>wayne.brill</dc:creator>
      <dc:date>2017-01-30T20:23:12Z</dc:date>
    </item>
  </channel>
</rss>

