<?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: Finding filenames in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Finding-filenames/m-p/839741#M57710</link>
    <description>Oh, it wouldn't be removed from the OPEN documentation.</description>
    <pubDate>Tue, 09 Aug 2005 01:44:26 GMT</pubDate>
    <dc:creator>Steven_L_Intel1</dc:creator>
    <dc:date>2005-08-09T01:44:26Z</dc:date>
    <item>
      <title>Finding filenames</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Finding-filenames/m-p/839735#M57704</link>
      <description>Hi,&lt;BR /&gt;looks like an easy question, but it is driving me mad.&lt;BR /&gt;I got some old Fortran (mainly 77) sourcecode again from which I know there are some I/O file accesses within. So I need to know which files are accessed. Unfortunately the person who has given me the sources is on vacation until the end of August.&lt;BR /&gt;And the only kind of file accesses I see are directly READ-statements without an according OPEN for the used file unit.&lt;BR /&gt;And there are also some lines such as&lt;BR /&gt;DEFINE FILE 52 (5000,600,L,ISET)&lt;BR /&gt;for there is also no hint which filename hides behind the logical unit number 52.&lt;BR /&gt;To complete the worst case, I even do not know on which old machine that Fortran code runs. It is no VAX afaik, maybe a BS2000/PS2000, sorry, no idea.&lt;BR /&gt;&lt;BR /&gt;So confused I am, so glad I'd be for hints and advices how to resolve the file units to file names. Anyone with hints?</description>
      <pubDate>Fri, 05 Aug 2005 21:07:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Finding-filenames/m-p/839735#M57704</guid>
      <dc:creator>h-faber</dc:creator>
      <dc:date>2005-08-05T21:07:52Z</dc:date>
    </item>
    <item>
      <title>Re: Finding filenames</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Finding-filenames/m-p/839736#M57705</link>
      <description>Well, if there is no OPEN, and no CALL ASSIGN, then unit 52 will go to a file FORT.52.  You can do an INQUIRE (UNIT=52, NAME=charvar) to get the name of the file open on unit 52.</description>
      <pubDate>Fri, 05 Aug 2005 21:19:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Finding-filenames/m-p/839736#M57705</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2005-08-05T21:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: Finding filenames</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Finding-filenames/m-p/839737#M57706</link>
      <description>Hi Steve,&lt;BR /&gt;thanks, this clears up a lot and this mistery. :)&lt;BR /&gt;Is this documented somewhere?</description>
      <pubDate>Fri, 05 Aug 2005 21:30:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Finding-filenames/m-p/839737#M57706</guid>
      <dc:creator>h-faber</dc:creator>
      <dc:date>2005-08-05T21:30:41Z</dc:date>
    </item>
    <item>
      <title>Re: Finding filenames</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Finding-filenames/m-p/839738#M57707</link>
      <description>Hmm.  It used to be in an obvious place, but doesn't seem to be anymore.  It's mentioned under OPEN, FILE= but that's not where you'd expect to look. It should be in Building Applications, Data and I/O, Devices and Files, Logical Devices.  It was, once upon a time.  I'll ask that it be put back.</description>
      <pubDate>Fri, 05 Aug 2005 22:13:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Finding-filenames/m-p/839738#M57707</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2005-08-05T22:13:07Z</dc:date>
    </item>
    <item>
      <title>Re: Finding filenames</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Finding-filenames/m-p/839739#M57708</link>
      <description>&lt;DIV&gt;I remember having "DEFINE FILE" statements in some of&lt;/DIV&gt;
&lt;DIV&gt;my old IBM 360 mainframe programs. They were used to&lt;/DIV&gt;
&lt;DIV&gt;set up direct access files. On the mainframe, connections&lt;/DIV&gt;
&lt;DIV&gt;between units numbers and files was done outside the&lt;/DIV&gt;
&lt;DIV&gt;program using ALLOC statements (for the time sharing system) or using DD statements in the JCL (job control language) for batch runs. The "files" in this case could have&lt;/DIV&gt;
&lt;DIV&gt;been decks of cards or tapes.&lt;/DIV&gt;</description>
      <pubDate>Mon, 08 Aug 2005 20:00:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Finding-filenames/m-p/839739#M57708</guid>
      <dc:creator>jparsly</dc:creator>
      <dc:date>2005-08-08T20:00:22Z</dc:date>
    </item>
    <item>
      <title>Re: Finding filenames</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Finding-filenames/m-p/839740#M57709</link>
      <description>&lt;BR /&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;sblionel wrote:&lt;BR /&gt;Hmm.  It used to be in an obvious place, but doesn't seem to be anymore.  It's mentioned under OPEN, FILE= but that's not where you'd expect to look. It should be in Building Applications, Data and I/O, Devices and Files, Logical Devices.  It was, once upon a time.  I'll ask that it be put back.&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Steve,&lt;BR /&gt;&lt;BR /&gt;Please explicitly ask that when this information is 'put back' that it also be retained in the current location.  Some of us have grown accustomed to thinking in weird ways.  Dunno, maybe reading standards has something to do with that.  ;)&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Tue, 09 Aug 2005 00:35:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Finding-filenames/m-p/839740#M57709</guid>
      <dc:creator>ivfuser</dc:creator>
      <dc:date>2005-08-09T00:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: Finding filenames</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Finding-filenames/m-p/839741#M57710</link>
      <description>Oh, it wouldn't be removed from the OPEN documentation.</description>
      <pubDate>Tue, 09 Aug 2005 01:44:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Finding-filenames/m-p/839741#M57710</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2005-08-09T01:44:26Z</dc:date>
    </item>
  </channel>
</rss>

