44 lines
1.0 KiB
C#
44 lines
1.0 KiB
C#
using System;
|
|
using System.IO;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace BestHTTP.PlatformSupport.FileSystem
|
|
{
|
|
// Token: 0x0200199D RID: 6557
|
|
[Token(Token = "0x200199D")]
|
|
[StructLayout(3)]
|
|
public interface IIOService
|
|
{
|
|
// Token: 0x0600B014 RID: 45076
|
|
[Token(Token = "0x600B014")]
|
|
[Address(Slot = "0")]
|
|
void DirectoryCreate(string path);
|
|
|
|
// Token: 0x0600B015 RID: 45077
|
|
[Token(Token = "0x600B015")]
|
|
[Address(Slot = "1")]
|
|
bool DirectoryExists(string path);
|
|
|
|
// Token: 0x0600B016 RID: 45078
|
|
[Token(Token = "0x600B016")]
|
|
[Address(Slot = "2")]
|
|
string[] GetFiles(string path);
|
|
|
|
// Token: 0x0600B017 RID: 45079
|
|
[Token(Token = "0x600B017")]
|
|
[Address(Slot = "3")]
|
|
void FileDelete(string path);
|
|
|
|
// Token: 0x0600B018 RID: 45080
|
|
[Token(Token = "0x600B018")]
|
|
[Address(Slot = "4")]
|
|
bool FileExists(string path);
|
|
|
|
// Token: 0x0600B019 RID: 45081
|
|
[Token(Token = "0x600B019")]
|
|
[Address(Slot = "5")]
|
|
Stream CreateFileStream(string path, FileStreamModes mode);
|
|
}
|
|
}
|