在C#中读取随机访问文件

时间:2013-04-30 16:37:12

标签: c# asp.net vb6 vb6-migration randomaccessfile

有人知道是否可以在C#中读取随机访问文件?

我试图在C# -

中复制以下函数(来自旧的VB6应用程序)
Open File For Random Shared As #100 Len = Len(Record)
    Get #100, DM, Record
Close #100

Public DM As Long
Public Record As DMrecord

Public Type DMrecord
column1 As Long
column2 As Integer
column3 As Integer
column4 As Integer
column5 As String * 4
End Type

编辑 -

我现在尝试使用VisualBasic DLL,如下所示,并在FileGetObject行上收到以下错误 -

" Microsoft.VisualBasic.FileSystem.FileGetObject(int,ref object,long)的最佳重载方法匹配有一些无效的参数"

我使用的代码是 -

        public class Record 
    {
        public int DMtype;
        public long ecn;


        public Record(int DMtype, long ecn) 
        {
            this.DMtype = DMtype;
            this.ecn = ecn;
        }

        public Record()
        {
        }
    }


string fileName = @"C:\RandomAccess.dat";
        string returnString = string.Empty;
        int row = 1;
        int maxRow = 1000;

        Record aFileRecord = new Record();

        FileSystem.FileOpen(1, fileName, OpenMode.Random, OpenAccess.Read, OpenShare.LockRead);

        while (row < maxRow)
        {
            //Get record 2 1st.>>
            FileSystem.FileGetObject(1, aFileRecord, row);
            returnString += aFileRecord.DMtype.ToString() + "$" + aFileRecord.ecn.ToString();
            row++;
        }

        FileSystem.FileClose(1);

我试过设置&#39;记录&#39;作为结构和类,并得到相同的错误。

编辑22/08/13 - 我从未尝试过,最后将随机访问数据导出到VB6中的逗号分隔文本文件,然后使用SSIS中的文件。< / p>

1 个答案:

答案 0 :(得分:1)

只需添加对Microsoft.VisualBasic.dll的引用,并使用FileSystem.FileOpen指定Random开放模式和FileSystem.FileGetObject方法。这与VB6中的Open语句和Get关键字的行为相同。