System.Windows.Forms.FileDialog.FileRender.Up C# (CSharp) 메소드

Up() 공개 메소드

public Up ( ) : void
리턴 void
            public void Up()
            {
#if UNITY_STANDALONE
                var parent = System.IO.Directory.GetParent(currentPath);
                if (parent.Exists == false) return;

                prevPathes.Add(currentPath);
                SetDirectory(parent.FullName);
#endif
            }