예제 #1
0
        public void changeDir()
        {
            string targetDirName = directoryItems[current];

            if (targetDirName == "...")
            {
                path = CCommon.GetParentRoot(path);
            }
            else
            {
                path = targetDirName + "\\";
            }
            RefreshPathFiles();
            Show();
        }