<?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: File links in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/file-links/m-p/3448235#M852280</link>
    <description>Hi all&lt;BR /&gt;&lt;BR /&gt;Thanks for all your reply.&lt;BR /&gt;May be i have to settle down with symbolic link. &lt;BR /&gt;&lt;BR /&gt;I validate the received file based on the date and time of the file size to check it is a fresh file or the same old file. &lt;BR /&gt;&lt;BR /&gt;But sym link doesnt change when new file arrives. &lt;BR /&gt;&lt;BR /&gt;I should change my logic to diff the current file with last processed file for validataion.&lt;BR /&gt;&lt;BR /&gt;Singaram&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 22 Dec 2004 09:25:17 GMT</pubDate>
    <dc:creator>Singaram</dc:creator>
    <dc:date>2004-12-22T09:25:17Z</dc:date>
    <item>
      <title>File links</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-links/m-p/3448229#M852274</link>
      <description>I receive a file in a specific directory (say Receipt) thru an applciation process from a remote server. This file is deleted and recreated every time the application sends the file. &lt;BR /&gt;&lt;BR /&gt;I have a hard link to this file in my other directory (called as send) and i FTP it to another server.&lt;BR /&gt;&lt;BR /&gt;Since every time the file is recreated the the files are not linked. I end up sending the old file it self.&lt;BR /&gt;&lt;BR /&gt;I dotn want to use a soft link (-s). &lt;BR /&gt;&lt;BR /&gt;Any ideas?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Singaram</description>
      <pubDate>Tue, 21 Dec 2004 11:18:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-links/m-p/3448229#M852274</guid>
      <dc:creator>Singaram</dc:creator>
      <dc:date>2004-12-21T11:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: File links</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-links/m-p/3448230#M852275</link>
      <description>Why worry with links at all?  Why not just look for the file in the directory it is dropped into and copy it from there?&lt;BR /&gt;</description>
      <pubDate>Tue, 21 Dec 2004 11:19:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-links/m-p/3448230#M852275</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2004-12-21T11:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: File links</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-links/m-p/3448231#M852276</link>
      <description>Pat&lt;BR /&gt;&lt;BR /&gt;It is not a single file. It is a variable directory aswell. I need to use only link..&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Singaram</description>
      <pubDate>Tue, 21 Dec 2004 11:33:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-links/m-p/3448231#M852276</guid>
      <dc:creator>Singaram</dc:creator>
      <dc:date>2004-12-21T11:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: File links</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-links/m-p/3448232#M852277</link>
      <description>Get the application that creates the directory/files to also create a manifest at the same time, in a known location. You can then use the manifest to ftp the files.&lt;BR /&gt;&lt;BR /&gt;Why don't you want to use a sym link?</description>
      <pubDate>Wed, 22 Dec 2004 04:02:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-links/m-p/3448232#M852277</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2004-12-22T04:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: File links</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-links/m-p/3448233#M852278</link>
      <description>A file is not really deleted until the original file -and- it's hard links are deleted.&lt;BR /&gt;&lt;BR /&gt;Try this:&lt;BR /&gt;# touch realfile&lt;BR /&gt;# ln realfile linkfile&lt;BR /&gt;# ls -il realfile linkfile&lt;BR /&gt;&lt;BR /&gt;(note the same inode on both files)&lt;BR /&gt;&lt;BR /&gt;It doesn't matter which one you delete, the inode stays until the last one is deleted.&lt;BR /&gt;&lt;BR /&gt;A sym link is just a link; when the ftp process deletes and re-creates the file, the symlink still points to the name, not the old or new inode.&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Dec 2004 09:12:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-links/m-p/3448233#M852278</guid>
      <dc:creator>Fred Martin_1</dc:creator>
      <dc:date>2004-12-22T09:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: File links</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-links/m-p/3448234#M852279</link>
      <description>Why do you dislike soft links? It might be the magic fix for your problem.</description>
      <pubDate>Wed, 22 Dec 2004 09:17:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-links/m-p/3448234#M852279</guid>
      <dc:creator>Georg Tresselt</dc:creator>
      <dc:date>2004-12-22T09:17:01Z</dc:date>
    </item>
    <item>
      <title>Re: File links</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-links/m-p/3448235#M852280</link>
      <description>Hi all&lt;BR /&gt;&lt;BR /&gt;Thanks for all your reply.&lt;BR /&gt;May be i have to settle down with symbolic link. &lt;BR /&gt;&lt;BR /&gt;I validate the received file based on the date and time of the file size to check it is a fresh file or the same old file. &lt;BR /&gt;&lt;BR /&gt;But sym link doesnt change when new file arrives. &lt;BR /&gt;&lt;BR /&gt;I should change my logic to diff the current file with last processed file for validataion.&lt;BR /&gt;&lt;BR /&gt;Singaram&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Dec 2004 09:25:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-links/m-p/3448235#M852280</guid>
      <dc:creator>Singaram</dc:creator>
      <dc:date>2004-12-22T09:25:17Z</dc:date>
    </item>
  </channel>
</rss>

