OpenRA.FileSystem.Folder.Folder C# (CSharp) 메소드

Folder() 공개 메소드

public Folder ( string path ) : System.Collections.Generic
path string
리턴 System.Collections.Generic
        public Folder(string path)
        {
            this.path = path;
            if (!Directory.Exists(path))
                Directory.CreateDirectory(path);
        }