<?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: Converting RTF to PDF via SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/876069#M346154</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/442826"&gt;@smol&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How do I change filename to remove .rtf from .pdf file created?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You are better off starting your own thread. If you think this one is related then post the url as related.&lt;/P&gt;
&lt;P&gt;Then provide the details of what you have attempted such as the code. With some description of your process there is no way for us to know where ".rtf" might be involved.&lt;/P&gt;</description>
    <pubDate>Tue, 16 May 2023 18:04:19 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2023-05-16T18:04:19Z</dc:date>
    <item>
      <title>Converting RTF to PDF via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594137#M170638</link>
      <description>&lt;P&gt;Hello everyone,,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to convert an RTF file to a PDF file using SAS 9.4. I am not talking about merely changing the ods output from rtf to pdf. Instead, I have a file in a folder that is in RTF format, and I want SAS to use that and convert it with code into a PDF file into another folder. Attached is a sample rtf file. I have read online that you can use the x command to do this but I am not sure about how to write the code. Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2019 15:38:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594137#M170638</guid>
      <dc:creator>omka_</dc:creator>
      <dc:date>2019-10-04T15:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: Converting RTF to PDF via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594142#M170639</link>
      <description>&lt;P&gt;You need either DDE or VBS for this. I'm going to recommend vbs.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First try this script, by pasting into Notepad and saving it as a file with the vbs extension (not txt).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Modify the &lt;STRONG&gt;sFolder&lt;/STRONG&gt; path to be appropriate for your computer and test that the script works first without SAS.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;bRecursive = False
sFolder = "C:\_localdata\temp\Test"
Set oFSO = CreateObject("Scripting.FileSystemObject")
Set oWord = CreateObject("Word.Application")
oWord.Visible = True

Set oFolder = oFSO.GetFolder(sFolder)
ConvertFolder(oFolder)
oWord.Quit

Sub ConvertFolder(oFldr)
    For Each oFile In oFldr.Files
        If LCase(oFSO.GetExtensionName(oFile.Name)) = "rtf" Then
            Set oDoc = oWord.Documents.Open(oFile.path)
            oWord.ActiveDocument.SaveAs oFile.path &amp;amp; "x", 17
            oDoc.Close
        End If
    Next

    If bRecursive Then
        For Each oSubfolder In oFldr.Subfolders
            ConvertFolder oSubfolder
        Next
    End If
End Sub&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Once it works, then you can call the script from SAS, via x Command.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;x "cscript ""path to file\temp.vbs""";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then once that is working, you can decide if you want to create the vbs file directly from SAS using PUT statements.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is one way at least, there are probably others...I think there's a one liner if you have Adobe Professional installed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is an example of how that may look when fully done, which converts files to a native Excel format.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://gist.github.com/statgeek/c51f58a009f8d315a200f34912e494b1" target="_blank"&gt;https://gist.github.com/statgeek/c51f58a009f8d315a200f34912e494b1&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/226118"&gt;@omka_&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello everyone,,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to convert an RTF file to a PDF file using SAS 9.4. I am not talking about merely changing the ods output from rtf to pdf. Instead, I have a file in a folder that is in RTF format, and I want SAS to use that and convert it with code into a PDF file into another folder. Attached is a sample rtf file. I have read online that you can use the x command to do this but I am not sure about how to write the code. Thanks.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2019 15:57:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594142#M170639</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-10-04T15:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: Converting RTF to PDF via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594147#M170640</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/226118"&gt;@omka_&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello everyone,,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to convert an RTF file to a PDF file using SAS 9.4. I am not talking about merely changing the ods output from rtf to pdf. Instead, I have a file in a folder that is in RTF format, and I want SAS to use that and convert it with code into a PDF file into another folder. Attached is a sample rtf file. I have read online that you can use the x command to do this but I am not sure about how to write the code. Thanks.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Are you using a Windows version of SAS?&amp;nbsp; Do you have WORD available on the machine that SAS is running on?&amp;nbsp; If you open the RTF file in WORD is SAVE-AS-PDF an option?&amp;nbsp; Are you allowed to use X command?&amp;nbsp; It can be restricted.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 437px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32975i81987CA23AAF7145/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2019 16:03:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594147#M170640</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2019-10-04T16:03:04Z</dc:date>
    </item>
    <item>
      <title>Re: Converting RTF to PDF via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594155#M170641</link>
      <description>&lt;P&gt;How would I test the code without SAS? Also when I try to save it as vbs, vbs does not show in the drop down menu. I just saved it with .vbs and it seemed to work.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2019 16:27:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594155#M170641</guid>
      <dc:creator>omka_</dc:creator>
      <dc:date>2019-10-04T16:27:41Z</dc:date>
    </item>
    <item>
      <title>Re: Converting RTF to PDF via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594158#M170642</link>
      <description>Save the program as a .vbs file from NotePad and then run it by double clicking it. &lt;BR /&gt;Assumes Windows OS and that you have Word 2010+ installed.</description>
      <pubDate>Fri, 04 Oct 2019 16:38:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594158#M170642</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-10-04T16:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: Converting RTF to PDF via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594160#M170643</link>
      <description>&lt;P&gt;Also what is the sFolder supposed to be ? Is that the path where the vbs file is being saved to ?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2019 16:46:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594160#M170643</guid>
      <dc:creator>omka_</dc:creator>
      <dc:date>2019-10-04T16:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Converting RTF to PDF via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594163#M170644</link>
      <description>Input files that need to be converted, in this program the converted PDFs are saved to the same folder.</description>
      <pubDate>Fri, 04 Oct 2019 16:52:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594163#M170644</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-10-04T16:52:36Z</dc:date>
    </item>
    <item>
      <title>Re: Converting RTF to PDF via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594164#M170645</link>
      <description>You may need to modify this line...&lt;BR /&gt; oWord.ActiveDocument.SaveAs oFile.path &amp;amp; "x", 17&lt;BR /&gt;&lt;BR /&gt;17 is for PDF, but the x is because I used this initially to convert DOC to DOCX. You'll need to add .pdf instead. &lt;BR /&gt;&lt;BR /&gt;For testing, just change x to .pdf and once you confirm it works you can fix the path and extension to be more of what you want.</description>
      <pubDate>Fri, 04 Oct 2019 16:54:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594164#M170645</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-10-04T16:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: Converting RTF to PDF via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594167#M170646</link>
      <description>&lt;P&gt;CSCRIPT can be executed from a CMD window.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32979iC7F1CD466AFB4A5F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2019 16:58:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594167#M170646</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2019-10-04T16:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: Converting RTF to PDF via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594169#M170647</link>
      <description>&lt;P&gt;I changed what you said and I am still getting this error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Script:&amp;nbsp;C:\Users\ojoshi\Documents\temp.vbs&lt;/P&gt;&lt;P&gt;Line: 7&lt;/P&gt;&lt;P&gt;Char: 1&lt;/P&gt;&lt;P&gt;Error: Path not found&lt;/P&gt;&lt;P&gt;Code: 800A004C&lt;/P&gt;&lt;P&gt;Source: Microsoft VBScript runtime error&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe its the path that is incorrect?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2019 17:07:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594169#M170647</guid>
      <dc:creator>omka_</dc:creator>
      <dc:date>2019-10-04T17:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: Converting RTF to PDF via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594172#M170649</link>
      <description>Post the full code you're trying to run. &lt;BR /&gt;</description>
      <pubDate>Fri, 04 Oct 2019 17:09:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594172#M170649</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-10-04T17:09:31Z</dc:date>
    </item>
    <item>
      <title>Re: Converting RTF to PDF via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594174#M170651</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;bRecursive = False
sFolder = "C:\Users\ojoshi\Documents\temp\Test"
Set oFSO = CreateObject("Scripting.FileSystemObject")
Set oWord = CreateObject("Word.Application")
oWord.Visible = True

Set oFolder = oFSO.GetFolder(sFolder)
ConvertFolder(oFolder)
oWord.Quit

Sub ConvertFolder(oFldr)
    For Each oFile In oFldr.Files
        If LCase(oFSO.GetExtensionName(oFile.Name)) = "rtf" Then
            Set oDoc = oWord.Documents.Open(oFile.path)
            oWord.ActiveDocument.SaveAs oFile.path &amp;amp; ".pdf", 17
            oDoc.Close
        End If
    Next

    If bRecursive Then
        For Each oSubfolder In oFldr.Subfolders
            ConvertFolder oSubfolder
        Next
    End If
End Sub&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 04 Oct 2019 17:11:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594174#M170651</guid>
      <dc:creator>omka_</dc:creator>
      <dc:date>2019-10-04T17:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: Converting RTF to PDF via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594176#M170652</link>
      <description>And when you double click this file, that's the error you get?</description>
      <pubDate>Fri, 04 Oct 2019 17:13:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594176#M170652</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-10-04T17:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: Converting RTF to PDF via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594177#M170653</link>
      <description>&lt;P&gt;Yes thats the error I am getting. I changed the path and the x to .pdf.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2019 17:18:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594177#M170653</guid>
      <dc:creator>omka_</dc:creator>
      <dc:date>2019-10-04T17:18:20Z</dc:date>
    </item>
    <item>
      <title>Re: Converting RTF to PDF via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594178#M170654</link>
      <description>&lt;P&gt;I ran your exact code,changing just the path, in my Windows 10 and it worked perfectly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="delete_demo.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32980iD7F15664A14DC315/image-size/large?v=v2&amp;amp;px=999" role="button" title="delete_demo.png" alt="delete_demo.png" /&gt;&lt;/span&gt;The path is to where your rtf files are stored?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2019 17:23:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594178#M170654</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-10-04T17:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: Converting RTF to PDF via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594182#M170656</link>
      <description>&lt;P&gt;So the path to where the rtf is located is this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;C:\Users\ojoshi\Documents\sample&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I added that in the line where the path is supposed to go now and it is still giving me the same error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2019 17:38:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594182#M170656</guid>
      <dc:creator>omka_</dc:creator>
      <dc:date>2019-10-04T17:38:13Z</dc:date>
    </item>
    <item>
      <title>Re: Converting RTF to PDF via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594186#M170659</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;bRecursive = False
sFolder = "C:\Users\ojoshi\Documents\sample"
Set oFSO = CreateObject("Scripting.FileSystemObject")
Set oWord = CreateObject("Word.Application")
oWord.Visible = True

Set oFolder = oFSO.GetFolder(sFolder)
ConvertFolder(oFolder)
oWord.Quit

Sub ConvertFolder(oFldr)
    For Each oFile In oFldr.Files
        If LCase(oFSO.GetExtensionName(oFile.Name)) = "rtf" Then
            Set oDoc = oWord.Documents.Open(oFile.path)
            oWord.ActiveDocument.SaveAs oFile.path &amp;amp; ".pdf", 17
            oDoc.Close
        End If
    Next

    If bRecursive Then
        For Each oSubfolder In oFldr.Subfolders
            ConvertFolder oSubfolder
        Next
    End If
End Sub&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This is the code I am using now. I still don't think the path is correct because I am getting the same error. the rtf file is called sample.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2019 18:03:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594186#M170659</guid>
      <dc:creator>omka_</dc:creator>
      <dc:date>2019-10-04T18:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: Converting RTF to PDF via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594200#M170665</link>
      <description>what did you change the path to??</description>
      <pubDate>Fri, 04 Oct 2019 19:02:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594200#M170665</guid>
      <dc:creator>omka_</dc:creator>
      <dc:date>2019-10-04T19:02:23Z</dc:date>
    </item>
    <item>
      <title>Re: Converting RTF to PDF via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594205#M170666</link>
      <description>The folder I had the RTF files in I want to convert and was testing, in my case that was "C:\localdata\" &lt;BR /&gt;&lt;BR /&gt;I tried with and without the \ at the end and it works either way. &lt;BR /&gt;&lt;BR /&gt;I put the script in the same folder but I don't think that usually matters.</description>
      <pubDate>Fri, 04 Oct 2019 19:29:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594205#M170666</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-10-04T19:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: Converting RTF to PDF via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594206#M170667</link>
      <description>So when you paste that path into Windows Explorer, does it go to that folder? The path not found is a weird error. You are using Windows?</description>
      <pubDate>Fri, 04 Oct 2019 19:29:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-RTF-to-PDF-via-SAS/m-p/594206#M170667</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-10-04T19:29:58Z</dc:date>
    </item>
  </channel>
</rss>

