ACR_ServerCommunicator.ModuleContentPatcher.ContentPatchFile.GetLocalPath C# (CSharp) Method

GetLocalPath() public method

Get the local path for a file.
public GetLocalPath ( ContentPatchPaths Paths ) : string
Paths ContentPatchPaths Supplies the content patch paths that are /// used to expand path references.
return string
            public string GetLocalPath(ContentPatchPaths Paths)
            {
                if (Location == "override")
                    return Paths.OverridePath + "\\" + FileName;
                else if (Location == "hak")
                    return Paths.HakPath + FileName;
                else
                    return null;
            }
        }
ModuleContentPatcher.ContentPatchFile