Files
27Aug2021-Cpp2IL-Dump/Assembly-CSharp/BestHTTP/PlatformSupport/FileSystem/IIOService.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

42 lines
977 B
C#

using System;
using System.IO;
using Cpp2IlInjected;
namespace BestHTTP.PlatformSupport.FileSystem
{
// Token: 0x0200205A RID: 8282
[Token(Token = "0x200205A")]
public interface IIOService
{
// Token: 0x0600CFBC RID: 53180
[Token(Token = "0x600CFBC")]
[Address(Slot = "0")]
void DirectoryCreate(string path);
// Token: 0x0600CFBD RID: 53181
[Token(Token = "0x600CFBD")]
[Address(Slot = "1")]
bool DirectoryExists(string path);
// Token: 0x0600CFBE RID: 53182
[Token(Token = "0x600CFBE")]
[Address(Slot = "2")]
string[] GetFiles(string path);
// Token: 0x0600CFBF RID: 53183
[Token(Token = "0x600CFBF")]
[Address(Slot = "3")]
void FileDelete(string path);
// Token: 0x0600CFC0 RID: 53184
[Token(Token = "0x600CFC0")]
[Address(Slot = "4")]
bool FileExists(string path);
// Token: 0x0600CFC1 RID: 53185
[Token(Token = "0x600CFC1")]
[Address(Slot = "5")]
Stream CreateFileStream(string path, FileStreamModes mode);
}
}