CSPspEmu.Hle.Managers.HleIoWrapper.Mkdir C# (CSharp) Method

Mkdir() public method

public Mkdir ( string Path, SceMode SceMode ) : void
Path string
SceMode SceMode
return void
        public void Mkdir(string Path, SceMode SceMode)
        {
            var PathInfo = HleIoManager.ParsePath(Path);
            PathInfo.HleIoDriver.IoMkdir(PathInfo.HleIoDrvFileArg, PathInfo.LocalPath, SceMode);
        }