OpenRA.FileSystem.Folder.Folder C# (CSharp) Method

Folder() public method

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