<?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: Windows and pipe with spaces in the path/file name in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Windows-and-pipe-with-spaces-in-the-path-file-name/m-p/740921#M231543</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/36757"&gt;@KevinViel&lt;/a&gt;&amp;nbsp;, I had a similar challenge trying to execute R code after my SAS code finished running. This approach worked for me:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  infile 'P: &amp;amp; "P:\Some Folder\Another-Folder\And Another Folder\instructions to run 7-Zip or R script.bat" 2&amp;gt;&amp;amp;1' pipe;
  input;
  putlog _infile_;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Credits:&amp;nbsp;&lt;A href="https://stackoverflow.com/questions/51957935/executing-bat-file-via-sas" target="_blank"&gt;https://stackoverflow.com/questions/51957935/executing-bat-file-via-sas&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 12 May 2021 19:47:32 GMT</pubDate>
    <dc:creator>avz</dc:creator>
    <dc:date>2021-05-12T19:47:32Z</dc:date>
    <item>
      <title>Windows and pipe with spaces in the path/file name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Windows-and-pipe-with-spaces-in-the-path-file-name/m-p/331754#M74598</link>
      <description>&lt;P&gt;I have used paths with embedded spaces before without issues while using pipes in SAS, but this one has me investigating more than I care on a Friday evening.&amp;nbsp; I have narrowed it down to the second path, by replacing the spaces with underscore and removing the double quotation marks.&amp;nbsp; Does anyone have a clue why?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;309 filename _7zip&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;310 pipe&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;311 '"C:\Program Files\7-Zip\7z.exe" l "L:\SDTM\449\11444909\SAS Datasets (2017-02-10).zip"'&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;312 ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;313&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;314 data _null_ ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;315 infile _7zip ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;316 input ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;317 put _infile_ ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;318 run ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;NOTE: The infile _7ZIP is:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;Unnamed Pipe Access Device,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;PROCESS="C:\Program Files\7-Zip\7z.exe" l "L:\SDTM\449\11444909\SAS Datasets (2017-02-10).zip",&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;RECFM=V,LRECL=32767&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;Stderr output:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#ff0000" face="courier new,courier" size="2"&gt;'C:\Program' is not recognized as an internal or external command,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#ff0000" face="courier new,courier" size="2"&gt;operable program or batch file.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;NOTE: 0 records were read from the infile _7ZIP.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;NOTE: DATA statement used (Total process time):&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;real time 0.02 seconds&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;cpu time 0.00 seconds&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;　&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;319&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;320 filename _7zip&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;321 pipe&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;322 '"C:\Program Files\7-Zip\7z.exe" l L:\SDTM\449\11444909\SAS_Datasets_(2017-02-10).zip'&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;323 ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;324&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;325 data _null_ ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;326 infile _7zip ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;327 input ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;328 put _infile_ ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;329 run ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;NOTE: The infile _7ZIP is:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;Unnamed Pipe Access Device,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;PROCESS="C:\Program Files\7-Zip\7z.exe" l L:\SDTM\449\11444909\SAS_Datasets_(2017-02-10).zip,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;RECFM=V,LRECL=32767&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;　&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;7-Zip [64] 16.03 : Copyright (c) 1999-2016 Igor Pavlov : 2016-09-28&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;Scanning the drive for archives:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;1 file, 1259652 bytes (1231 KiB)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;Listing archive: L:\SDTM\449\11444909\SAS_Datasets_(2017-02-10).zip&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;--&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;Path = L:\SDTM\449\11444909\SAS_Datasets_(2017-02-10).zip&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;Type = zip&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;Physical Size = 1259652&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;Date Time Attr Size Compressed Name&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;------------------- ----- ------------ ------------ ------------------------&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:15 ....A 147456 11200 ae.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:15 ....A 81920 5987 cm.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:37:32 ....A 65536 5028 co.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:16 ....A 32768 2102 dc.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:16 ....A 81920 6575 dm.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:16 ....A 180224 6893 ds.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:16 ....A 32768 1626 dt.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:32:30 ....A 32768 1719 dv.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:17 ....A 278528 23356 eg.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:17 ....A 1556480 99987 ex.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:29 ....A 5177344 348609 lb.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:29 ....A 49152 1971 mp.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:29 ....A 49152 3599 sc.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:29 ....A 311296 17517 se.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:29 ....A 131072 4075 sp.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:31 ....A 5521408 346421 sr.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:32:30 ....A 65536 3563 su.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:31 ....A 32768 1266 suppae.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:31 ....A 32768 1493 suppdc.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:31 ....A 344064 8209 suppdm.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:31 ....A 32768 1476 suppdv.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:32 ....A 32768 1279 suppeg.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:32 ....A 1196032 66343 suppex.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:33 ....A 2850816 135176 suppsr.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:34 ....A 32768 1731 suppvs.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:32:04 ....A 802816 39688 sv.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:34 ....A 32768 1756 ta.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:34 ....A 32768 1907 te.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:34 ....A 32768 3171 ti.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:34 ....A 32768 2395 ts.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:34 ....A 32768 1645 tv.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:25:35 ....A 1458176 97515 vs.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;------------------- ----- ------------ ------------ ------------------------&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;2017-02-10 09:37:32 20774912 1255278 32 files&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;NOTE: 49 records were read from the infile _7ZIP.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;The minimum record length was 0.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;The maximum record length was 77.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;NOTE: DATA statement used (Total process time):&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;real time 0.04 seconds&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;cpu time 0.00 seconds&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kevin&lt;/P&gt;</description>
      <pubDate>Sat, 11 Feb 2017 00:51:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Windows-and-pipe-with-spaces-in-the-path-file-name/m-p/331754#M74598</guid>
      <dc:creator>KevinViel</dc:creator>
      <dc:date>2017-02-11T00:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: Windows and pipe with spaces in the path/file name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Windows-and-pipe-with-spaces-in-the-path-file-name/m-p/331761#M74600</link>
      <description>&lt;P&gt;What is on the lines before line 309? &amp;nbsp;Your error message doesn't seem to match the "fix" that you applied. &amp;nbsp;It seems more likely to me that the FILENAME statement on line 309 never ran and that the first data step used an old definition of the filename.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try running again from a new session. You could also eliminate the FILENAME statement and just specify the command in the INFILE statement.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;INFILE  '"C:\Program Files\7-Zip\7z.exe" l "L:\SDTM\449\11444909\SAS Datasets (2017-02-10).zip"'
  PIPE ;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Personally I like to use %SYSFUNC(QUOTE()) to generate the outer quotes needed. &amp;nbsp;This will allow you to use macro variables.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let cmd = C:\Program Files\7-Zip\7z.exe;
%let path = L:\SDTM\449\11444909\SAS Datasets (2017-02-10).zip ;
...
INFILE  %sysfunc(quote("&amp;amp;cmd" l "&amp;amp;path"))  PIPE ;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 11 Feb 2017 01:23:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Windows-and-pipe-with-spaces-in-the-path-file-name/m-p/331761#M74600</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-02-11T01:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: Windows and pipe with spaces in the path/file name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Windows-and-pipe-with-spaces-in-the-path-file-name/m-p/333208#M75043</link>
      <description>&lt;P&gt;Tom,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; That message matches what DOS returns if one submits:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;C:\Program Files\7-Zip\7z.exe l L:\SDTM\449\11444909\SAS Datasets (2017-02-10).zip&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;'C:\Program' is not recognized as an internal or external command,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;operable program or batch file.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;1&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2 %let cmd = C:\Program Files\7-Zip\7z.exe;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;3 %let path = L:\SDTM\449\11444909\SAS Datasets (2017-02-10).zip ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;4&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;5 data _null_ ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;6 INFILE %sysfunc(quote("&amp;amp;cmd" l "&amp;amp;path")) PIPE ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;7 input ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;8 put _infile_ ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;9 run ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;NOTE: The infile """C:\Program Files\7-Zip\7z.exe"" l ""L:\SDTM\449\11444909\SAS Datasets&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;(2017-02-10).zip""" is:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Unnamed Pipe Access Device,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;PROCESS="C:\Program Files\7-Zip\7z.exe" l "L:\SDTM\449\11444909\SAS Datasets (2017-02-10).zip",&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;RECFM=V,LRECL=32767&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Stderr output:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;'C:\Program' is not recognized as an internal or external command,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;operable program or batch file.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;NOTE: 0 records were read from the infile """C:\Program Files\7-Zip\7z.exe"" l ""L:\SDTM\449\11444909\SAS&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Datasets (2017-02-10).zip""".&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;NOTE: DATA statement used (Total process time):&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;real time 0.02 seconds&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;cpu time 0.01 seconds&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;45 filename _7zip&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;46 pipe&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;47 '"C:\Program Files\7-Zip\7z.exe"'&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;48 ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;49&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;50 data _null_ ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;51 infile _7zip ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;52 input ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;53 put _infile_ ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;54 run ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;NOTE: The infile _7ZIP is:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Unnamed Pipe Access Device,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;PROCESS="C:\Program Files\7-Zip\7z.exe",&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;RECFM=V,LRECL=32767&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;　&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;7-Zip [64] 16.03 : Copyright (c) 1999-2016 Igor Pavlov : 2016-09-28&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Usage: 7z &amp;lt;command&amp;gt; [&amp;lt;switches&amp;gt;...] &amp;lt;archive_name&amp;gt; [&amp;lt;file_names&amp;gt;...]&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;[&amp;lt;@listfiles...&amp;gt;]&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;lt;Commands&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;a : Add files to archive&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;b : Benchmark&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;lt;SNIPPED&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So the issue is with the subsequent path (7zip runs will just the L option, but I get an error message from it about the archive).&amp;nbsp; I have asked IT to add the 7-zip path to the environmental variable %path%.&amp;nbsp; I suspect that calling only 7z.exe will eliminate the issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kevin&lt;/P&gt;</description>
      <pubDate>Wed, 15 Feb 2017 22:43:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Windows-and-pipe-with-spaces-in-the-path-file-name/m-p/333208#M75043</guid>
      <dc:creator>KevinViel</dc:creator>
      <dc:date>2017-02-15T22:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: Windows and pipe with spaces in the path/file name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Windows-and-pipe-with-spaces-in-the-path-file-name/m-p/334125#M75428</link>
      <description>&lt;P&gt;A pint to the BOFH* and we get an environmental variable that resolves the issues, within SAS:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;1&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2 filename _7zip&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;3 pipe&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;4 '7z.exe l "L:\SDTM\449\11444909\SAS Datasets (2017-02-10).zip"'&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;5 ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;6&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;7 data _null_ ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;8 infile _7zip ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;9 input ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;10 put _infile_ ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;11 run ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;NOTE: The infile _7ZIP is:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Unnamed Pipe Access Device,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;PROCESS=7z.exe l "L:\SDTM\449\11444909\SAS Datasets (2017-02-10).zip",&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;RECFM=V,LRECL=32767&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;　&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;7-Zip [64] 16.03 : Copyright (c) 1999-2016 Igor Pavlov : 2016-09-28&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Scanning the drive for archives:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;1 file, 1259652 bytes (1231 KiB)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Listing archive: L:\SDTM\449\11444909\SAS Datasets (2017-02-10).zip&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;--&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Path = L:\SDTM\449\11444909\SAS Datasets (2017-02-10).zip&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Type = zip&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Physical Size = 1259652&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Date Time Attr Size Compressed Name&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;------------------- ----- ------------ ------------ ------------------------&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:15 ....A 147456 11200 ae.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:15 ....A 81920 5987 cm.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:37:32 ....A 65536 5028 co.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:16 ....A 32768 2102 dc.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:16 ....A 81920 6575 dm.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:16 ....A 180224 6893 ds.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:16 ....A 32768 1626 dt.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:32:30 ....A 32768 1719 dv.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:17 ....A 278528 23356 eg.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:17 ....A 1556480 99987 ex.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:29 ....A 5177344 348609 lb.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:29 ....A 49152 1971 mp.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:29 ....A 49152 3599 sc.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:29 ....A 311296 17517 se.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:29 ....A 131072 4075 sp.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:31 ....A 5521408 346421 sr.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:32:30 ....A 65536 3563 su.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:31 ....A 32768 1266 suppae.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:31 ....A 32768 1493 suppdc.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:31 ....A 344064 8209 suppdm.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:31 ....A 32768 1476 suppdv.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:32 ....A 32768 1279 suppeg.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:32 ....A 1196032 66343 suppex.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:33 ....A 2850816 135176 suppsr.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:34 ....A 32768 1731 suppvs.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:32:04 ....A 802816 39688 sv.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:34 ....A 32768 1756 ta.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:34 ....A 32768 1907 te.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:34 ....A 32768 3171 ti.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:34 ....A 32768 2395 ts.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:34 ....A 32768 1645 tv.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:25:35 ....A 1458176 97515 vs.sas7bdat&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;------------------- ----- ------------ ------------ ------------------------&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2017-02-10 09:37:32 20774912 1255278 32 files&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;NOTE: 49 records were read from the infile _7ZIP.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;The minimum record length was 0.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;The maximum record length was 77.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;NOTE: DATA statement used (Total process time):&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;real time 0.08 seconds&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;cpu time 0.01 seconds&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-Kevin&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;*&lt;A href="http://www.theregister.co.uk/data_centre/bofh/" target="_blank"&gt;http://www.theregister.co.uk/data_centre/bofh/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 18 Feb 2017 20:06:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Windows-and-pipe-with-spaces-in-the-path-file-name/m-p/334125#M75428</guid>
      <dc:creator>KevinViel</dc:creator>
      <dc:date>2017-02-18T20:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: Windows and pipe with spaces in the path/file name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Windows-and-pipe-with-spaces-in-the-path-file-name/m-p/607133#M176401</link>
      <description>&lt;P&gt;With help from Dante DiTommaso, an alternative to requesting IT to create a environmental variable follows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;9604  data _null_ ;
9605    infile 'C:\PROGRA~1\7-Zip\7z.exe l "H:\My Documents\SAS - Omeros\Version_Test\DEV\New folder\test_2019-11-25.zip"'
9606           pipe
9607           ;
9608  run ;

NOTE: The infile 'C:\PROGRA~1\7-Zip\7z.exe l "H:\My Documents\SAS - Omeros\Version_Test\DEV\New folder\test_2019-11-25.zip"' is:
      Unnamed Pipe Access Device,
      PROCESS=C:\PROGRA~1\7-Zip\7z.exe l "H:\My Documents\SAS - Omeros\Version_Test\DEV\New folder\test_2019-11-25.zip",
      RECFM=V,LRECL=32767

NOTE: 0 records were read from the infile 'C:\PROGRA~1\7-Zip\7z.exe l "H:\My Documents\SAS - Omeros\Version_Test\DEV\New folder\test_2019-11-25.zip"'.
NOTE: DATA statement used (Total process time):
      real time           0.10 seconds
      cpu time            0.00 seconds
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The use of PROGRA~1 solves the conundrum of having a space in the first argument.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HTH,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kevin&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2019 22:44:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Windows-and-pipe-with-spaces-in-the-path-file-name/m-p/607133#M176401</guid>
      <dc:creator>KevinViel</dc:creator>
      <dc:date>2019-11-25T22:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: Windows and pipe with spaces in the path/file name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Windows-and-pipe-with-spaces-in-the-path-file-name/m-p/740921#M231543</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/36757"&gt;@KevinViel&lt;/a&gt;&amp;nbsp;, I had a similar challenge trying to execute R code after my SAS code finished running. This approach worked for me:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  infile 'P: &amp;amp; "P:\Some Folder\Another-Folder\And Another Folder\instructions to run 7-Zip or R script.bat" 2&amp;gt;&amp;amp;1' pipe;
  input;
  putlog _infile_;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Credits:&amp;nbsp;&lt;A href="https://stackoverflow.com/questions/51957935/executing-bat-file-via-sas" target="_blank"&gt;https://stackoverflow.com/questions/51957935/executing-bat-file-via-sas&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 May 2021 19:47:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Windows-and-pipe-with-spaces-in-the-path-file-name/m-p/740921#M231543</guid>
      <dc:creator>avz</dc:creator>
      <dc:date>2021-05-12T19:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: Windows and pipe with spaces in the path/file name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Windows-and-pipe-with-spaces-in-the-path-file-name/m-p/741029#M231603</link>
      <description>&lt;P&gt;The imbeciles in Redmond will forever be cursed for putting a blank into one of the most important directory names in their system.&lt;/P&gt;</description>
      <pubDate>Thu, 13 May 2021 06:19:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Windows-and-pipe-with-spaces-in-the-path-file-name/m-p/741029#M231603</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-05-13T06:19:26Z</dc:date>
    </item>
  </channel>
</rss>

