CSPspEmu.Hle.Modules.iofilemgr.IoFileMgrForUser.sceIoChdir C# (CSharp) Method

sceIoChdir() private method

private sceIoChdir ( string DirectoryPath ) : int
DirectoryPath string
return int
        public int sceIoChdir(string DirectoryPath)
        {
            try
            {
                HleIoManager.Chdir(DirectoryPath);
                //var Info = HleIoManager.ParsePath(DirectoryPath);
                //return Info.HleIoDriver.IoChdir(Info.HleIoDrvFileArg, Info.LocalPath);
                return 0;
            }
            finally
            {
                _DelayIo(IoDelayType.Chdir);
            }
        }