FileSystem
Contents
[
Hide
]Inheritance: java.lang.Object
All Implemented Interfaces: java.io.Closeable
public abstract class FileSystem implements Closeable
File system encapsulation. Aspose.3D will use this to read/write dependencies. Example: The following code shows how to import file, and provide dependent files in a given directory
var inputFile = "input.fbx";
var format = FileFormat.detect(inputFile);
//create a load options instance and specify a zip file system
var opt = format.createLoadOptions();
opt.setFileSystem(new LocalFileSystem("textures/"));
//load the file
var scene = Scene.fromFile(inputFile, opt);
Constructors
Constructor | Description |
---|---|
FileSystem() |
Methods
Method | Description |
---|---|
close() | Dispose the File system and release its resources. |
equals(Object arg0) | |
getClass() | |
hashCode() | |
notify() | |
notifyAll() | |
readFile(String fileName, IOConfig options) | Create a stream for reading dependencies. |
toString() | |
wait() | |
wait(long arg0) | |
wait(long arg0, int arg1) | |
writeFile(String fileName, IOConfig options) | Create a stream for writing dependencies. |
FileSystem()
public FileSystem()
close()
public void close()
Dispose the File system and release its resources.
equals(Object arg0)
public boolean equals(Object arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object |
Returns: boolean
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
hashCode()
public native int hashCode()
Returns: int
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
readFile(String fileName, IOConfig options)
public abstract Stream readFile(String fileName, IOConfig options)
Create a stream for reading dependencies.
Parameters:
Parameter | Type | Description |
---|---|---|
fileName | java.lang.String | |
options | IOConfig |
Returns: com.aspose.csporter.helpers.Stream
toString()
public String toString()
Returns: java.lang.String
wait()
public final void wait()
wait(long arg0)
public final void wait(long arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long | |
arg1 | int |
writeFile(String fileName, IOConfig options)
public abstract Stream writeFile(String fileName, IOConfig options)
Create a stream for writing dependencies.
Parameters:
Parameter | Type | Description |
---|---|---|
fileName | java.lang.String | |
options | IOConfig |
Returns: com.aspose.csporter.helpers.Stream