create_local_file_system method
create_local_file_system(, directory)
Initialize a new FileSystem that only access local directory.
All file read/write on this FileSystem instance will be mapped to specified directory.
Returns
A new instance of file system to provide local file access
@staticmethod
def create_local_file_system(directory):
    ...
| Parameter | Type | Description | 
|---|---|---|
| directory | System.String | The directory in your physical file system as the virtual root directory. | 
Exceptions
| Exception | Description | 
|---|---|
| FileNotFoundException | Thrown when directory cannot be found. | 
See Also
- module aspose.threed.utilities
- class FileSystem