Re: [Pharo-project] FSFileSystem: modification date

2012-01-29 Thread Marcus Denker
On Jan 27, 2012, at 9:42 PM, Camillo Bruni wrote: > Hi Deby, > > Open a bug report :) I think the memory FS should handle the modification / > creation dates exactly as it would on disk... > There is a bug entry here already: http://code.google.com/p/pharo/issues/detail?id=3154 -- M

Re: [Pharo-project] FSFileSystem: modification date

2012-01-28 Thread Damien Pollet
I started fixing that, but it was before Colin's refactoring, so now one would need to fix the fix… On 28 January 2012 02:04, Débora Fortini wrote: > ok, Thank you! ;) > > On 27 January 2012 21:42, Camillo Bruni wrote: >> Hi Deby, >> >> Open a bug report :) I think the memory FS should handle t

Re: [Pharo-project] FSFileSystem: modification date

2012-01-27 Thread Débora Fortini
ok, Thank you! ;) On 27 January 2012 21:42, Camillo Bruni wrote: > Hi Deby, > > Open a bug report :) I think the memory FS should handle the modification / > creation dates exactly as it would on disk... > > > BTW: > > file := (fs/'hello') withExtension: 'txt' > > can be written as > > file := (

Re: [Pharo-project] FSFileSystem: modification date

2012-01-27 Thread Camillo Bruni
Hi Deby, Open a bug report :) I think the memory FS should handle the modification / creation dates exactly as it would on disk... BTW: file := (fs/'hello') withExtension: 'txt' can be written as file := (fs/'hello') , 'txt' best camillo On 2012-01-27, at 23:33, Débora Fortini wrote: > Wh

[Pharo-project] FSFileSystem: modification date

2012-01-27 Thread Débora Fortini
While using FileSystem I found that the memory storage doesn't save the modification date. Here is an example of what is failing: fs := FSFilesystem memory. file := (fs/'hello') withExtension: 'txt'. file fileStreamDo: [ :stream | stream nextPutAll: 'foo' ]. file en