Patcher.Data.DefaultDataFileProvider.GetDataFile C# (CSharp) Method

GetDataFile() public method

public GetDataFile ( FileMode mode, string path ) : DataFile
mode FileMode
path string
return DataFile
        public DataFile GetDataFile(FileMode mode, string path)
        {
            string fullPath = Path.Combine(DataFolder, path);
            return new DataFile(this, mode, fullPath, path);
        }