<?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: Autocad lisp point specific folder in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autocad-lisp-point-specific-folder/m-p/11276960#M43818</link>
    <description>&lt;P&gt;If you have Express Tools then the following code will work:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(if(and(member "acetutil.arx"(arx))acet-ui-getfile)(acet-ui-pickdir "Select Item" (getvar"dwgprefix") "Select Folder to Process")(alert"AutoCAD Express Tools Not Found"))&lt;/LI-CODE&gt;</description>
    <pubDate>Tue, 05 Jul 2022 04:39:13 GMT</pubDate>
    <dc:creator>paullimapa</dc:creator>
    <dc:date>2022-07-05T04:39:13Z</dc:date>
    <item>
      <title>Autocad lisp point specific folder</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autocad-lisp-point-specific-folder/m-p/11269149#M43816</link>
      <description>&lt;P&gt;Hi everybody, thanks for the acceptance on this forum.&lt;/P&gt;&lt;P&gt;Sorry for my english. I work in an Architecture Company based in France as a Graphic designer, I usually use Sketchup for modelling and Enscape for rendering.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm totally a newbie using autocad lisp and I'm trying to figure out how it works. Also trying to help a colleague.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's my problem/question:&lt;/P&gt;&lt;P&gt;I'm using an existing lisp allowing me to rename several blocks in different *.dwg files. In this way I can save time.&lt;/P&gt;&lt;P&gt;Unfortunately, a window box appears and asks me to choose my Folder. So I have to expand all the folders 'till the good one.&lt;/P&gt;&lt;P&gt;I suppose that the command in the lisp is this one:&lt;/P&gt;&lt;P&gt;(setq oFolder (vlax-invoke&lt;BR /&gt;oShell&lt;BR /&gt;'BrowseForFolder&lt;BR /&gt;(vla-get-hwnd acApp)&lt;BR /&gt;"Select folder to process:"&lt;BR /&gt;0&lt;BR /&gt;(+ 1 64 256)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But what I want is to go directly to the drawing directory so I can select the files quickly instead of expanding everything that's before.&lt;/P&gt;&lt;P&gt;Here are some screenshots&lt;/P&gt;&lt;P&gt;The code&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="morganbouchaud_0-1656595293874.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1086182i21D278E4A116783C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="morganbouchaud_0-1656595293874.png" alt="morganbouchaud_0-1656595293874.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The dialog box I get&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="morganbouchaud_1-1656595358908.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1086185iBACAC1B5C7D11ADD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="morganbouchaud_1-1656595358908.png" alt="morganbouchaud_1-1656595358908.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jun 2022 13:27:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autocad-lisp-point-specific-folder/m-p/11269149#M43816</guid>
      <dc:creator>morgan.bouchaud</dc:creator>
      <dc:date>2022-06-30T13:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: Autocad lisp point specific folder</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autocad-lisp-point-specific-folder/m-p/11270476#M43817</link>
      <description>&lt;P&gt;Have a look at this "Getfiled"&lt;/P&gt;&lt;P&gt;&lt;A href="http://docs.autodesk.com/ACD/2013/ENU/index.html?url=files/GUID-AD65DF88-5218-4655-B877-B4D33B9FB6D1.htm,topicNumber=d30e615733" target="_blank"&gt;Help: getfiled (AutoLISP) (autodesk.com)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;May be a french version.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jul 2022 00:56:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autocad-lisp-point-specific-folder/m-p/11270476#M43817</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2022-07-01T00:56:37Z</dc:date>
    </item>
    <item>
      <title>Re: Autocad lisp point specific folder</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autocad-lisp-point-specific-folder/m-p/11276960#M43818</link>
      <description>&lt;P&gt;If you have Express Tools then the following code will work:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(if(and(member "acetutil.arx"(arx))acet-ui-getfile)(acet-ui-pickdir "Select Item" (getvar"dwgprefix") "Select Folder to Process")(alert"AutoCAD Express Tools Not Found"))&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 05 Jul 2022 04:39:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autocad-lisp-point-specific-folder/m-p/11276960#M43818</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2022-07-05T04:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: Autocad lisp point specific folder</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autocad-lisp-point-specific-folder/m-p/11278909#M43819</link>
      <description>&lt;P&gt;Take a look &lt;A href="http://www.lee-mac.com/getallfiles.html" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;HERE&lt;/STRONG&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jul 2022 20:13:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autocad-lisp-point-specific-folder/m-p/11278909#M43819</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2022-07-05T20:13:10Z</dc:date>
    </item>
  </channel>
</rss>

