From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: Date: Tue, 7 Sep 2004 17:41:38 -0400 From: Russ Cox To: Alberto Cortes , Fans of the OS Plan 9 from Bell Labs <9fans@cse.psu.edu> Subject: Re: [9fans] losing files with ftpfs(4) In-Reply-To: <20040907211108.GA1687@shire> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <20040907211108.GA1687@shire> Cc: Topicbox-Message-UUID: dfa82f22-eacd-11e9-9e20-41e7f4b1d025 This is just a fundamental limitation of ftpfs. It can't reliably try the create until it has all the data that is supposed to be in the file. But it doesn't know it has all the data until the close, at which point mv will think it's okay to remove the original. Russ