Ejemplo n.º 1
0
        private void CreateFile(object sender, EventArgs e)
        {
            var dir = new GetString("FileName With Extention Name");

            if (dir.ShowDialog() == DialogResult.OK)
            {
                this._handler.CreateFile(this._handler.GetCurrentPath() + dir.outref);
                List(this._handler.GetCurrentPath());
            }

            //MessageBox.Show( "not supported" );
        }
Ejemplo n.º 2
0
        private void CoreateFolder(object sender, EventArgs e)
        {
            var dir = new GetString("Directory Name");

            if (dir.ShowDialog() == DialogResult.OK)
            {
                this._handler.CreateDirectory(this._handler.GetCurrentPath() + dir.outref);
                List(this._handler.GetCurrentPath());
            }

            //MessageBox.Show( "not supported" );
        }