<?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 use ilogic to create a new folder in different path. in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/use-ilogic-to-create-a-new-folder-in-different-path/m-p/10554560#M127824</link>
    <description>&lt;P&gt;I am trying use ilogic to create a new folder and move my project in to it. Any ideas will help! Thank you！&lt;/P&gt;</description>
    <pubDate>Wed, 18 Aug 2021 11:18:57 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-08-18T11:18:57Z</dc:date>
    <item>
      <title>use ilogic to create a new folder in different path.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/use-ilogic-to-create-a-new-folder-in-different-path/m-p/10554560#M127824</link>
      <description>&lt;P&gt;I am trying use ilogic to create a new folder and move my project in to it. Any ideas will help! Thank you！&lt;/P&gt;</description>
      <pubDate>Wed, 18 Aug 2021 11:18:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/use-ilogic-to-create-a-new-folder-in-different-path/m-p/10554560#M127824</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-08-18T11:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: use ilogic to create a new folder in different path.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/use-ilogic-to-create-a-new-folder-in-different-path/m-p/10554827#M127831</link>
      <description>&lt;P&gt;Two methods come to mind for the task of creating a new folder (directory).&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;Dim oDesiredFolder As String = "C:\Temp\MyNewSubFolder\"
If Not System.IO.Directory.Exists(oDesiredFolder) Then
    System.IO.Directory.CreateDirectory(oDesiredFolder)
End If&lt;/LI-CODE&gt;
&lt;P&gt;and&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;Dim oDesiredFolder As String = "C:\Temp\MyNewSubFolder\"
If Not FileIO.FileSystem.DirectoryExists(oDesiredFolder) Then
	FileIO.FileSystem.CreateDirectory(oDesiredFolder)
End If&lt;/LI-CODE&gt;
&lt;P&gt;I'm not sure exactly what you mean by 'move my project into it', though.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Aug 2021 12:45:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/use-ilogic-to-create-a-new-folder-in-different-path/m-p/10554827#M127831</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2021-08-18T12:45:03Z</dc:date>
    </item>
  </channel>
</rss>

