<?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: Look for and CREATE OR SET FOLDER for quick plot routine in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/look-for-and-create-or-set-folder-for-quick-plot-routine/m-p/8305035#M98917</link>
    <description>&lt;P&gt;thank you very much!!!&lt;/P&gt;</description>
    <pubDate>Mon, 01 Oct 2018 16:37:31 GMT</pubDate>
    <dc:creator>DC-MWA</dc:creator>
    <dc:date>2018-10-01T16:37:31Z</dc:date>
    <item>
      <title>Look for and CREATE OR SET FOLDER for quick plot routine</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/look-for-and-create-or-set-folder-for-quick-plot-routine/m-p/8302937#M98911</link>
      <description>&lt;P&gt;I have a program for fast plots to pdf. It makes the pdf's using the drawing name and puts them in the current drawing folder.&lt;/P&gt;&lt;P&gt;I need have the program look for a folder named "QUICK PLOTS" in the current drawing folder, if it finds it, put the pdf file in that folder. If the folder does not exist, make the folder and then put the pdf in the new folder.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance for any assistance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Sep 2018 18:36:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/look-for-and-create-or-set-folder-for-quick-plot-routine/m-p/8302937#M98911</guid>
      <dc:creator>DC-MWA</dc:creator>
      <dc:date>2018-09-30T18:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Look for and CREATE OR SET FOLDER for quick plot routine</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/look-for-and-create-or-set-folder-for-quick-plot-routine/m-p/8302967#M98912</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6400150"&gt;@DC-MWA&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i see that you are very active and that good&amp;nbsp;&lt;img id="smileylol" class="emoticon emoticon-smileylol" src="https://forums.autodesk.com/i/smilies/16x16_smiley-lol.png" alt="Smiley LOL" title="Smiley LOL" /&gt;&lt;/P&gt;&lt;P&gt;to achieve what you want, look at these functions:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(vl-directory-files)&lt;/P&gt;&lt;P&gt;(vl-mkdir)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Sep 2018 19:09:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/look-for-and-create-or-set-folder-for-quick-plot-routine/m-p/8302967#M98912</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2018-09-30T19:09:10Z</dc:date>
    </item>
    <item>
      <title>Re: Look for and CREATE OR SET FOLDER for quick plot routine</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/look-for-and-create-or-set-folder-for-quick-plot-routine/m-p/8303099#M98913</link>
      <description>&lt;P&gt;With my limited knowledge I think I could use&amp;nbsp;&lt;SPAN&gt;vl-mkdir to make the directory, but to have it check to see if the directory exists, make it or set it and then incorporate it into the program....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Way above my head.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Sep 2018 21:07:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/look-for-and-create-or-set-folder-for-quick-plot-routine/m-p/8303099#M98913</guid>
      <dc:creator>DC-MWA</dc:creator>
      <dc:date>2018-09-30T21:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: Look for and CREATE OR SET FOLDER for quick plot routine</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/look-for-and-create-or-set-folder-for-quick-plot-routine/m-p/8303213#M98914</link>
      <description>&lt;PRE&gt;(and&lt;BR /&gt;  (= (getvar "dwgtitled") 1)
  (vl-load-com)&lt;BR /&gt;  (setq *doc* (vla-get-activedocument (vlax-get-acad-object)))
  (setq path (vl-filename-directory (vlax-get *doc* 'fullname)))
  (or
    (vl-file-directory-p (strcat path "\\Quick Plots"))
    (vl-mkdir (strcat path "\\Quick Plots"))
  )
)&lt;/PRE&gt;</description>
      <pubDate>Mon, 01 Oct 2018 00:06:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/look-for-and-create-or-set-folder-for-quick-plot-routine/m-p/8303213#M98914</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2018-10-01T00:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: Look for and CREATE OR SET FOLDER for quick plot routine</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/look-for-and-create-or-set-folder-for-quick-plot-routine/m-p/8303491#M98915</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Check the attached Code for one pattern "P42".......(it has been tested in Autocad 2017).......&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For your information the below line may vary according to Autocad Version.....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366FF"&gt;(command "-plot" "yes" "" "DWG TO PDF.PC3" "ARCH expand E1 (30.00 x 42.00 Inches)" "Inches" "Landscape" "n" "extents" "1:1" ".113427,.113168" "y" "monochrome.ctb" "n" "A" file "n" "Y")&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Oct 2018 06:18:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/look-for-and-create-or-set-folder-for-quick-plot-routine/m-p/8303491#M98915</guid>
      <dc:creator>dbhunia</dc:creator>
      <dc:date>2018-10-01T06:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: Look for and CREATE OR SET FOLDER for quick plot routine</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/look-for-and-create-or-set-folder-for-quick-plot-routine/m-p/8303497#M98916</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;Attach an example of your dwg file&lt;/SPAN&gt;&lt;BR /&gt;I need an example of your title block.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Oct 2018 06:28:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/look-for-and-create-or-set-folder-for-quick-plot-routine/m-p/8303497#M98916</guid>
      <dc:creator>maratovich</dc:creator>
      <dc:date>2018-10-01T06:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: Look for and CREATE OR SET FOLDER for quick plot routine</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/look-for-and-create-or-set-folder-for-quick-plot-routine/m-p/8305035#M98917</link>
      <description>&lt;P&gt;thank you very much!!!&lt;/P&gt;</description>
      <pubDate>Mon, 01 Oct 2018 16:37:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/look-for-and-create-or-set-folder-for-quick-plot-routine/m-p/8305035#M98917</guid>
      <dc:creator>DC-MWA</dc:creator>
      <dc:date>2018-10-01T16:37:31Z</dc:date>
    </item>
  </channel>
</rss>

