42 lines
977 B
C#
42 lines
977 B
C#
using System;
|
|
using System.IO;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace BestHTTP.PlatformSupport.FileSystem
|
|
{
|
|
// Token: 0x02001F7A RID: 8058
|
|
[Token(Token = "0x2001F7A")]
|
|
public interface IIOService
|
|
{
|
|
// Token: 0x0600CBEE RID: 52206
|
|
[Token(Token = "0x600CBEE")]
|
|
[Address(Slot = "0")]
|
|
void DirectoryCreate(string path);
|
|
|
|
// Token: 0x0600CBEF RID: 52207
|
|
[Token(Token = "0x600CBEF")]
|
|
[Address(Slot = "1")]
|
|
bool DirectoryExists(string path);
|
|
|
|
// Token: 0x0600CBF0 RID: 52208
|
|
[Token(Token = "0x600CBF0")]
|
|
[Address(Slot = "2")]
|
|
string[] GetFiles(string path);
|
|
|
|
// Token: 0x0600CBF1 RID: 52209
|
|
[Token(Token = "0x600CBF1")]
|
|
[Address(Slot = "3")]
|
|
void FileDelete(string path);
|
|
|
|
// Token: 0x0600CBF2 RID: 52210
|
|
[Token(Token = "0x600CBF2")]
|
|
[Address(Slot = "4")]
|
|
bool FileExists(string path);
|
|
|
|
// Token: 0x0600CBF3 RID: 52211
|
|
[Token(Token = "0x600CBF3")]
|
|
[Address(Slot = "5")]
|
|
Stream CreateFileStream(string path, FileStreamModes mode);
|
|
}
|
|
}
|