BitMiracle.LibTiff.Classic.Tiff.CreateDirectory C# (CSharp) Method

CreateDirectory() public method

Creates a new directory within file/stream.
The newly created directory will not exist on the file/stream till WriteDirectory, CheckpointDirectory, Flush or Close is called.
public CreateDirectory ( ) : void
return void
        public void CreateDirectory()
        {
            // Should we automatically call WriteDirectory()
            // if the current one is dirty?

            setupDefaultDirectory();
            m_diroff = 0;
            m_nextdiroff = 0;
            m_curoff = 0;
            m_row = -1;
            m_curstrip = -1;
        }
Tiff