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);
        }