Exemplo n.º 1
0
        // Open the file associated with the data block if is not already open
        internal bool Open()
        {
            if (diskfile == null)
            {
                return(false);
            }

            if (diskfile.IsOpen())
            {
                return(true);
            }

            return(diskfile.Open());
        }