Show / Hide Table of Contents

Class VirtualFileSystem.VirtualFileImplementation

Inheritance
System.Object
VirtualFileSystem.VirtualFileImplementation
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: AssetRipper.IO.Files
Assembly: AssetRipper.IO.Files.dll
Syntax
public sealed class VirtualFileImplementation

Methods

| Improve this Doc View Source

Create(String)

Declaration
public override SmartStream Create(string path)
Parameters
Type Name Description
System.String path
Returns
Type Description
SmartStream
| Improve this Doc View Source

Delete(String)

Declaration
public override void Delete(string path)
Parameters
Type Name Description
System.String path
| Improve this Doc View Source

Exists(String)

Declaration
public override bool Exists(string path)
Parameters
Type Name Description
System.String path
Returns
Type Description
System.Boolean
| Improve this Doc View Source

Open(String)

Declaration
public SmartStream Open(string path)
Parameters
Type Name Description
System.String path
Returns
Type Description
SmartStream
| Improve this Doc View Source

OpenRead(String)

Declaration
public override SmartStream OpenRead(string path)
Parameters
Type Name Description
System.String path
Returns
Type Description
SmartStream
| Improve this Doc View Source

OpenWrite(String)

Declaration
public override SmartStream OpenWrite(string path)
Parameters
Type Name Description
System.String path
Returns
Type Description
SmartStream
| Improve this Doc View Source

ReadAllBytes(String)

Declaration
public override byte[] ReadAllBytes(string path)
Parameters
Type Name Description
System.String path
Returns
Type Description
System.Byte[]
| Improve this Doc View Source

ReadAllText(String)

Declaration
public override string ReadAllText(string path)
Parameters
Type Name Description
System.String path
Returns
Type Description
System.String
| Improve this Doc View Source

ReadAllText(String, Encoding)

Declaration
public override string ReadAllText(string path, Encoding encoding)
Parameters
Type Name Description
System.String path
System.Text.Encoding encoding
Returns
Type Description
System.String
| Improve this Doc View Source

WriteAllBytes(String, ReadOnlySpan<Byte>)

Declaration
public override void WriteAllBytes(string path, ReadOnlySpan<byte> bytes)
Parameters
Type Name Description
System.String path
ReadOnlySpan<System.Byte> bytes
| Improve this Doc View Source

WriteAllText(String, ReadOnlySpan<Char>)

Declaration
public override void WriteAllText(string path, ReadOnlySpan<char> contents)
Parameters
Type Name Description
System.String path
ReadOnlySpan<System.Char> contents
| Improve this Doc View Source

WriteAllText(String, ReadOnlySpan<Char>, Encoding)

Declaration
public override void WriteAllText(string path, ReadOnlySpan<char> contents, Encoding encoding)
Parameters
Type Name Description
System.String path
ReadOnlySpan<System.Char> contents
System.Text.Encoding encoding
  • Improve this Doc
  • View Source
☀
☾
In This Article
Back to top
Generated by DocFX
☀
☾