Help with Filesystem

2010-11-16 Thread David Boccabella
Hi folks I have a NETMF project I am trying to work on - but the code from C# Framework 4.1 should work. My target is an SD card and I do not have any database capabilities like SQL.. In the old VB6 days you could create random files, and by defining the record length you could easily move

Re: Help with Filesystem

2010-11-16 Thread mike smith
On 17 November 2010 11:13, David Boccabella dav...@shamirlens.com.auwrote: Hi folks I have a NETMF project I am trying to work on – but the code from C# Framework 4.1 should work. My target is an SD card and I do not have any database capabilities like SQL.. In the old VB6 days you

Re: Help with Filesystem

2010-11-16 Thread mike smith
...@ozdotnet.com] *On Behalf Of *mike smith *Sent:* Wednesday, 17 November 2010 12:06 PM *To:* ozDotNet *Subject:* Re: Help with Filesystem On 17 November 2010 11:13, David Boccabella dav...@shamirlens.com.au wrote: Hi folks I have a NETMF project I am trying to work on – but the code

RE: Help with Filesystem

2010-11-16 Thread David Boccabella
[mailto:ozdotnet-boun...@ozdotnet.com] On Behalf Of mike smith Sent: Wednesday, 17 November 2010 12:06 PM To: ozDotNet Subject: Re: Help with Filesystem On 17 November 2010 11:13, David Boccabella dav...@shamirlens.com.au wrote: Hi folks I have a NETMF project I am trying to work on – but the code

Re: Help with Filesystem

2010-11-16 Thread Mark Hurd
If you don't mind using the Microsoft.VisualBasic namespace (and assembly, but not Microsoft.VisualBasic.Compatibility), the FileSystem module is still available to you in C#, with FileOpen, FileClose, FileGet and FilePut, with RecordLength and RecordNumber parameters. -- Regards, Mark Hurd,

RE: Help with Filesystem

2010-11-16 Thread David Boccabella
From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com] On Behalf Of Ian Thomas Sent: Wednesday, 17 November 2010 1:54 PM To: 'ozDotNet' Subject: RE: Help with Filesystem Yes, as Mark points out, a lot