public class FileSystemProxy extends NetObject
.NET documentation at https://docs.microsoft.com/en-us/dotnet/api/Microsoft.VisualBasic.MyServices.FileSystemProxy
Powered by JCOBridge: more info at https://www.jcobridge.com
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
assemblyFullName
Fully assembly qualified name: Microsoft.VisualBasic.Forms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
|
static java.lang.String |
assemblyShortName
Assembly name: Microsoft.VisualBasic.Forms
|
static java.lang.String |
className
Qualified class name: Microsoft.VisualBasic.MyServices.FileSystemProxy
|
static JCType |
classType
The type managed from JCOBridge.
|
| Constructor and Description |
|---|
FileSystemProxy() |
FileSystemProxy(java.lang.Object instance)
Internal constructor.
|
| Modifier and Type | Method and Description |
|---|---|
static FileSystemProxy |
cast(IJCOBridgeReflected from)
Try to cast the
IJCOBridgeReflected instance into FileSystemProxy, a cast assert is made to check if types are compatible. |
java.lang.String |
CombinePath(java.lang.String baseDirectory,
java.lang.String relativePath) |
void |
CopyDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName) |
void |
CopyDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
boolean overwrite) |
void |
CopyDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
UIOption showUI) |
void |
CopyDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
UIOption showUI,
UICancelOption onUserCancel) |
void |
CopyFile(java.lang.String sourceFileName,
java.lang.String destinationFileName) |
void |
CopyFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
boolean overwrite) |
void |
CopyFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
UIOption showUI) |
void |
CopyFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
UIOption showUI,
UICancelOption onUserCancel) |
void |
CreateDirectory(java.lang.String directory) |
void |
DeleteDirectory(java.lang.String directory,
DeleteDirectoryOption onDirectoryNotEmpty) |
void |
DeleteDirectory(java.lang.String directory,
UIOption showUI,
RecycleOption recycle) |
void |
DeleteDirectory(java.lang.String directory,
UIOption showUI,
RecycleOption recycle,
UICancelOption onUserCancel) |
void |
DeleteFile(java.lang.String file) |
void |
DeleteFile(java.lang.String file,
UIOption showUI,
RecycleOption recycle) |
void |
DeleteFile(java.lang.String file,
UIOption showUI,
RecycleOption recycle,
UICancelOption onUserCancel) |
boolean |
DirectoryExists(java.lang.String directory) |
boolean |
FileExists(java.lang.String file) |
java.lang.String |
getCurrentDirectory() |
DirectoryInfo |
GetDirectoryInfo(java.lang.String directory) |
DriveInfo |
GetDriveInfo(java.lang.String drive) |
FileInfo |
GetFileInfo(java.lang.String file) |
java.lang.String |
getJCOAssemblyName()
Returns the reflected Assembly name
|
java.lang.String |
getJCOClassName()
Returns the reflected Class name
|
java.lang.Object |
getJCOInstance()
Returns the instantiated class
|
java.lang.String |
getJCOObjectName()
Returns the reflected Class name used to build the object
|
JCType |
getJCOType()
Returns the instantiated class Type
|
java.lang.String |
GetName(java.lang.String path) |
java.lang.String |
GetParentPath(java.lang.String path) |
SpecialDirectoriesProxy |
getSpecialDirectories() |
java.lang.String |
GetTempFileName() |
void |
MoveDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName) |
void |
MoveDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
boolean overwrite) |
void |
MoveDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
UIOption showUI) |
void |
MoveDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
UIOption showUI,
UICancelOption onUserCancel) |
void |
MoveFile(java.lang.String sourceFileName,
java.lang.String destinationFileName) |
void |
MoveFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
boolean overwrite) |
void |
MoveFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
UIOption showUI) |
void |
MoveFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
UIOption showUI,
UICancelOption onUserCancel) |
TextFieldParser |
OpenTextFieldParser(java.lang.String file) |
TextFieldParser |
OpenTextFieldParser(java.lang.String file,
int... fieldWidths) |
TextFieldParser |
OpenTextFieldParser(java.lang.String dupParam0,
JCORefOut dupParam1) |
TextFieldParser |
OpenTextFieldParser(java.lang.String file,
java.lang.String... delimiters) |
StreamReader |
OpenTextFileReader(java.lang.String file) |
StreamReader |
OpenTextFileReader(java.lang.String file,
Encoding encoding) |
StreamWriter |
OpenTextFileWriter(java.lang.String file,
boolean append) |
StreamWriter |
OpenTextFileWriter(java.lang.String file,
boolean append,
Encoding encoding) |
byte[] |
ReadAllBytes(java.lang.String file) |
java.lang.String |
ReadAllText(java.lang.String file) |
java.lang.String |
ReadAllText(java.lang.String file,
Encoding encoding) |
void |
RenameDirectory(java.lang.String directory,
java.lang.String newName) |
void |
RenameFile(java.lang.String file,
java.lang.String newName) |
void |
setCurrentDirectory(java.lang.String CurrentDirectory) |
void |
setJCOInstance(JCObject instance) |
void |
WriteAllBytes(java.lang.String file,
byte[] data,
boolean append) |
void |
WriteAllBytes(java.lang.String dupParam0,
JCORefOut dupParam1,
boolean dupParam2) |
void |
WriteAllText(java.lang.String file,
java.lang.String text,
boolean append) |
void |
WriteAllText(java.lang.String file,
java.lang.String text,
boolean append,
Encoding encoding) |
public static final java.lang.String assemblyFullName
public static final java.lang.String assemblyShortName
public static final java.lang.String className
public FileSystemProxy()
throws java.lang.Throwable
java.lang.Throwablepublic FileSystemProxy(java.lang.Object instance)
throws java.lang.Throwable
java.lang.Throwablepublic static FileSystemProxy cast(IJCOBridgeReflected from) throws java.lang.Throwable
IJCOBridgeReflected instance into FileSystemProxy, a cast assert is made to check if types are compatible.from - IJCOBridgeReflected instance to be castedFileSystemProxy instancejava.lang.Throwable - in case of error during cast operationpublic java.lang.String CombinePath(java.lang.String baseDirectory,
java.lang.String relativePath)
throws java.lang.Throwable,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
NotSupportedException,
IndexOutOfRangeException,
ArgumentException,
OutOfMemoryException,
ExternalException,
ArgumentNullException,
ArgumentOutOfRangeException,
ObjectDisposedException,
InvalidOperationException
java.lang.ThrowableCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionNotSupportedExceptionIndexOutOfRangeExceptionArgumentExceptionOutOfMemoryExceptionExternalExceptionArgumentNullExceptionArgumentOutOfRangeExceptionObjectDisposedExceptionInvalidOperationExceptionpublic void CopyDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName)
throws java.lang.Throwable,
ArgumentException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
CultureNotFoundException,
ArgumentNullException,
RankException,
ArrayTypeMismatchException,
DirectoryNotFoundException,
IOException,
InvalidOperationException,
OperationCanceledException,
FileNotFoundException,
UnauthorizedAccessException,
PathTooLongException,
DriveNotFoundException,
NullReferenceException
java.lang.ThrowableArgumentExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionCultureNotFoundExceptionArgumentNullExceptionRankExceptionArrayTypeMismatchExceptionDirectoryNotFoundExceptionIOExceptionInvalidOperationExceptionOperationCanceledExceptionFileNotFoundExceptionUnauthorizedAccessExceptionPathTooLongExceptionDriveNotFoundExceptionNullReferenceExceptionpublic void CopyDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
boolean overwrite)
throws java.lang.Throwable,
ArgumentException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
CultureNotFoundException,
ArgumentNullException,
RankException,
ArrayTypeMismatchException,
DirectoryNotFoundException,
IOException,
InvalidOperationException,
OperationCanceledException,
FileNotFoundException,
UnauthorizedAccessException,
PathTooLongException,
DriveNotFoundException,
NullReferenceException
java.lang.ThrowableArgumentExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionCultureNotFoundExceptionArgumentNullExceptionRankExceptionArrayTypeMismatchExceptionDirectoryNotFoundExceptionIOExceptionInvalidOperationExceptionOperationCanceledExceptionFileNotFoundExceptionUnauthorizedAccessExceptionPathTooLongExceptionDriveNotFoundExceptionNullReferenceExceptionpublic void CopyDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
UIOption showUI)
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
CultureNotFoundException,
ArgumentNullException,
RankException,
ArrayTypeMismatchException,
DirectoryNotFoundException,
IOException,
NotSupportedException,
OperationCanceledException,
FileNotFoundException,
UnauthorizedAccessException,
PathTooLongException,
DriveNotFoundException,
NullReferenceException
java.lang.ThrowableArgumentExceptionInvalidOperationExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionCultureNotFoundExceptionArgumentNullExceptionRankExceptionArrayTypeMismatchExceptionDirectoryNotFoundExceptionIOExceptionNotSupportedExceptionOperationCanceledExceptionFileNotFoundExceptionUnauthorizedAccessExceptionPathTooLongExceptionDriveNotFoundExceptionNullReferenceExceptionpublic void CopyDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
UIOption showUI,
UICancelOption onUserCancel)
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
CultureNotFoundException,
ArgumentNullException,
RankException,
ArrayTypeMismatchException,
DirectoryNotFoundException,
IOException,
NotSupportedException,
OperationCanceledException,
FileNotFoundException,
UnauthorizedAccessException,
PathTooLongException,
DriveNotFoundException,
NullReferenceException
java.lang.ThrowableArgumentExceptionInvalidOperationExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionCultureNotFoundExceptionArgumentNullExceptionRankExceptionArrayTypeMismatchExceptionDirectoryNotFoundExceptionIOExceptionNotSupportedExceptionOperationCanceledExceptionFileNotFoundExceptionUnauthorizedAccessExceptionPathTooLongExceptionDriveNotFoundExceptionNullReferenceExceptionpublic void CopyFile(java.lang.String sourceFileName,
java.lang.String destinationFileName)
throws java.lang.Throwable,
ArgumentException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
CultureNotFoundException,
ArgumentNullException,
FileNotFoundException,
IOException,
InvalidOperationException,
OperationCanceledException,
DirectoryNotFoundException,
UnauthorizedAccessException,
PathTooLongException,
DriveNotFoundException,
MissingMethodException,
TargetInvocationException
java.lang.ThrowableArgumentExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionCultureNotFoundExceptionArgumentNullExceptionFileNotFoundExceptionIOExceptionInvalidOperationExceptionOperationCanceledExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionPathTooLongExceptionDriveNotFoundExceptionMissingMethodExceptionTargetInvocationExceptionpublic void CopyFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
boolean overwrite)
throws java.lang.Throwable,
ArgumentException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
CultureNotFoundException,
ArgumentNullException,
FileNotFoundException,
IOException,
InvalidOperationException,
OperationCanceledException,
DirectoryNotFoundException,
UnauthorizedAccessException,
PathTooLongException,
DriveNotFoundException,
MissingMethodException,
TargetInvocationException
java.lang.ThrowableArgumentExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionCultureNotFoundExceptionArgumentNullExceptionFileNotFoundExceptionIOExceptionInvalidOperationExceptionOperationCanceledExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionPathTooLongExceptionDriveNotFoundExceptionMissingMethodExceptionTargetInvocationExceptionpublic void CopyFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
UIOption showUI)
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
CultureNotFoundException,
ArgumentNullException,
FileNotFoundException,
IOException,
OperationCanceledException,
DirectoryNotFoundException,
UnauthorizedAccessException,
PathTooLongException,
DriveNotFoundException,
MissingMethodException,
TargetInvocationException
java.lang.ThrowableArgumentExceptionInvalidOperationExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionCultureNotFoundExceptionArgumentNullExceptionFileNotFoundExceptionIOExceptionOperationCanceledExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionPathTooLongExceptionDriveNotFoundExceptionMissingMethodExceptionTargetInvocationExceptionpublic void CopyFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
UIOption showUI,
UICancelOption onUserCancel)
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
CultureNotFoundException,
ArgumentNullException,
FileNotFoundException,
IOException,
OperationCanceledException,
DirectoryNotFoundException,
UnauthorizedAccessException,
PathTooLongException,
DriveNotFoundException,
MissingMethodException,
TargetInvocationException
java.lang.ThrowableArgumentExceptionInvalidOperationExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionCultureNotFoundExceptionArgumentNullExceptionFileNotFoundExceptionIOExceptionOperationCanceledExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionPathTooLongExceptionDriveNotFoundExceptionMissingMethodExceptionTargetInvocationExceptionpublic void CreateDirectory(java.lang.String directory)
throws java.lang.Throwable,
NotSupportedException,
ArgumentException,
ArgumentNullException,
IndexOutOfRangeException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
CultureNotFoundException,
MissingMethodException,
TargetInvocationException,
IOException
public void DeleteDirectory(java.lang.String directory,
DeleteDirectoryOption onDirectoryNotEmpty)
throws java.lang.Throwable,
ArgumentException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
CultureNotFoundException,
ArgumentNullException,
DirectoryNotFoundException,
IOException,
InvalidOperationException,
OperationCanceledException,
FileNotFoundException,
UnauthorizedAccessException,
PathTooLongException,
DriveNotFoundException
java.lang.ThrowableArgumentExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionCultureNotFoundExceptionArgumentNullExceptionDirectoryNotFoundExceptionIOExceptionInvalidOperationExceptionOperationCanceledExceptionFileNotFoundExceptionUnauthorizedAccessExceptionPathTooLongExceptionDriveNotFoundExceptionpublic void DeleteDirectory(java.lang.String directory,
UIOption showUI,
RecycleOption recycle)
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
CultureNotFoundException,
ArgumentNullException,
DirectoryNotFoundException,
IOException,
OperationCanceledException,
FileNotFoundException,
UnauthorizedAccessException,
PathTooLongException,
DriveNotFoundException
java.lang.ThrowableArgumentExceptionInvalidOperationExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionCultureNotFoundExceptionArgumentNullExceptionDirectoryNotFoundExceptionIOExceptionOperationCanceledExceptionFileNotFoundExceptionUnauthorizedAccessExceptionPathTooLongExceptionDriveNotFoundExceptionpublic void DeleteDirectory(java.lang.String directory,
UIOption showUI,
RecycleOption recycle,
UICancelOption onUserCancel)
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
CultureNotFoundException,
ArgumentNullException,
DirectoryNotFoundException,
IOException,
OperationCanceledException,
FileNotFoundException,
UnauthorizedAccessException,
PathTooLongException,
DriveNotFoundException
java.lang.ThrowableArgumentExceptionInvalidOperationExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionCultureNotFoundExceptionArgumentNullExceptionDirectoryNotFoundExceptionIOExceptionOperationCanceledExceptionFileNotFoundExceptionUnauthorizedAccessExceptionPathTooLongExceptionDriveNotFoundExceptionpublic void DeleteFile(java.lang.String file)
throws java.lang.Throwable,
ArgumentException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
CultureNotFoundException,
ArgumentNullException,
FileNotFoundException,
InvalidOperationException,
OperationCanceledException,
DirectoryNotFoundException,
UnauthorizedAccessException,
PathTooLongException,
DriveNotFoundException,
IOException
java.lang.ThrowableArgumentExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionCultureNotFoundExceptionArgumentNullExceptionFileNotFoundExceptionInvalidOperationExceptionOperationCanceledExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionPathTooLongExceptionDriveNotFoundExceptionIOExceptionpublic void DeleteFile(java.lang.String file,
UIOption showUI,
RecycleOption recycle)
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
CultureNotFoundException,
ArgumentNullException,
FileNotFoundException,
OperationCanceledException,
DirectoryNotFoundException,
UnauthorizedAccessException,
PathTooLongException,
DriveNotFoundException,
IOException
java.lang.ThrowableArgumentExceptionInvalidOperationExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionCultureNotFoundExceptionArgumentNullExceptionFileNotFoundExceptionOperationCanceledExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionPathTooLongExceptionDriveNotFoundExceptionIOExceptionpublic void DeleteFile(java.lang.String file,
UIOption showUI,
RecycleOption recycle,
UICancelOption onUserCancel)
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
CultureNotFoundException,
ArgumentNullException,
FileNotFoundException,
OperationCanceledException,
DirectoryNotFoundException,
UnauthorizedAccessException,
PathTooLongException,
DriveNotFoundException,
IOException
java.lang.ThrowableArgumentExceptionInvalidOperationExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionCultureNotFoundExceptionArgumentNullExceptionFileNotFoundExceptionOperationCanceledExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionPathTooLongExceptionDriveNotFoundExceptionIOExceptionpublic boolean DirectoryExists(java.lang.String directory)
throws java.lang.Throwable,
ArgumentNullException,
IndexOutOfRangeException,
PlatformNotSupportedException,
ArgumentException,
NotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
CultureNotFoundException
public boolean FileExists(java.lang.String file)
throws java.lang.Throwable,
NotSupportedException,
ArgumentException,
ArgumentNullException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
IndexOutOfRangeException,
OutOfMemoryException,
ExternalException,
ArgumentOutOfRangeException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionOutOfMemoryExceptionExternalExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionpublic java.lang.String getCurrentDirectory()
throws java.lang.Throwable,
PlatformNotSupportedException,
ArgumentException,
ArgumentOutOfRangeException,
InvalidOperationException,
NotSupportedException,
CultureNotFoundException,
ArgumentNullException,
IndexOutOfRangeException,
RankException,
ArrayTypeMismatchException
public DirectoryInfo GetDirectoryInfo(java.lang.String directory) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, CultureNotFoundException
public DriveInfo GetDriveInfo(java.lang.String drive) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, OutOfMemoryException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException
public FileInfo GetFileInfo(java.lang.String file) throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException, OutOfMemoryException, ExternalException, ArgumentNullException, InvalidOperationException, CultureNotFoundException, ArgumentException, IndexOutOfRangeException, FormatException, ArgumentOutOfRangeException, RankException, ArrayTypeMismatchException
java.lang.ThrowablePlatformNotSupportedExceptionNotSupportedExceptionOutOfMemoryExceptionExternalExceptionArgumentNullExceptionInvalidOperationExceptionCultureNotFoundExceptionArgumentExceptionIndexOutOfRangeExceptionFormatExceptionArgumentOutOfRangeExceptionRankExceptionArrayTypeMismatchExceptionpublic java.lang.String getJCOAssemblyName()
IJCOBridgeReflectedgetJCOAssemblyName in interface IJCOBridgeReflectedgetJCOAssemblyName in class NetObjectString representing the Fullname of reflected Assemblypublic java.lang.String getJCOClassName()
IJCOBridgeReflectedgetJCOClassName in interface IJCOBridgeReflectedgetJCOClassName in class NetObjectString representing the Fullname of reflected Classpublic java.lang.Object getJCOInstance()
IJCOBridgeReflectedgetJCOInstance in interface IJCOBridgeReflectedgetJCOInstance in class NetObjectObject representing the CLR instance of the instantiated Classpublic java.lang.String getJCOObjectName()
IJCOBridgeReflectedgetJCOObjectName in interface IJCOBridgeReflectedgetJCOObjectName in class NetObjectString representing the name used to allocated the object
in CLR contextpublic JCType getJCOType()
IJCOBridgeReflectedgetJCOType in interface IJCOBridgeReflectedgetJCOType in class NetObjectJCType representing the CLR Type of the instantiated Classpublic java.lang.String GetName(java.lang.String path)
throws java.lang.Throwable,
IndexOutOfRangeException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
NotSupportedException
java.lang.ThrowableIndexOutOfRangeExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionNotSupportedExceptionpublic java.lang.String GetParentPath(java.lang.String path)
throws java.lang.Throwable,
NotSupportedException,
ArgumentException,
ArgumentNullException,
IndexOutOfRangeException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
CultureNotFoundException
public SpecialDirectoriesProxy getSpecialDirectories() throws java.lang.Throwable
java.lang.Throwablepublic java.lang.String GetTempFileName()
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
PlatformNotSupportedException,
OutOfMemoryException,
ArgumentNullException,
CultureNotFoundException,
FormatException,
SerializationException,
IOException
public void MoveDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName)
throws java.lang.Throwable,
ArgumentException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
CultureNotFoundException,
ArgumentNullException,
RankException,
ArrayTypeMismatchException,
DirectoryNotFoundException,
IOException,
InvalidOperationException,
OperationCanceledException,
FileNotFoundException,
UnauthorizedAccessException,
PathTooLongException,
DriveNotFoundException,
NullReferenceException
java.lang.ThrowableArgumentExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionCultureNotFoundExceptionArgumentNullExceptionRankExceptionArrayTypeMismatchExceptionDirectoryNotFoundExceptionIOExceptionInvalidOperationExceptionOperationCanceledExceptionFileNotFoundExceptionUnauthorizedAccessExceptionPathTooLongExceptionDriveNotFoundExceptionNullReferenceExceptionpublic void MoveDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
boolean overwrite)
throws java.lang.Throwable,
ArgumentException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
CultureNotFoundException,
ArgumentNullException,
RankException,
ArrayTypeMismatchException,
DirectoryNotFoundException,
IOException,
InvalidOperationException,
OperationCanceledException,
FileNotFoundException,
UnauthorizedAccessException,
PathTooLongException,
DriveNotFoundException,
NullReferenceException
java.lang.ThrowableArgumentExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionCultureNotFoundExceptionArgumentNullExceptionRankExceptionArrayTypeMismatchExceptionDirectoryNotFoundExceptionIOExceptionInvalidOperationExceptionOperationCanceledExceptionFileNotFoundExceptionUnauthorizedAccessExceptionPathTooLongExceptionDriveNotFoundExceptionNullReferenceExceptionpublic void MoveDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
UIOption showUI)
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
CultureNotFoundException,
ArgumentNullException,
RankException,
ArrayTypeMismatchException,
DirectoryNotFoundException,
IOException,
NotSupportedException,
OperationCanceledException,
FileNotFoundException,
UnauthorizedAccessException,
PathTooLongException,
DriveNotFoundException,
NullReferenceException
java.lang.ThrowableArgumentExceptionInvalidOperationExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionCultureNotFoundExceptionArgumentNullExceptionRankExceptionArrayTypeMismatchExceptionDirectoryNotFoundExceptionIOExceptionNotSupportedExceptionOperationCanceledExceptionFileNotFoundExceptionUnauthorizedAccessExceptionPathTooLongExceptionDriveNotFoundExceptionNullReferenceExceptionpublic void MoveDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
UIOption showUI,
UICancelOption onUserCancel)
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
CultureNotFoundException,
ArgumentNullException,
RankException,
ArrayTypeMismatchException,
DirectoryNotFoundException,
IOException,
NotSupportedException,
OperationCanceledException,
FileNotFoundException,
UnauthorizedAccessException,
PathTooLongException,
DriveNotFoundException,
NullReferenceException
java.lang.ThrowableArgumentExceptionInvalidOperationExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionCultureNotFoundExceptionArgumentNullExceptionRankExceptionArrayTypeMismatchExceptionDirectoryNotFoundExceptionIOExceptionNotSupportedExceptionOperationCanceledExceptionFileNotFoundExceptionUnauthorizedAccessExceptionPathTooLongExceptionDriveNotFoundExceptionNullReferenceExceptionpublic void MoveFile(java.lang.String sourceFileName,
java.lang.String destinationFileName)
throws java.lang.Throwable,
ArgumentException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
CultureNotFoundException,
ArgumentNullException,
FileNotFoundException,
IOException,
InvalidOperationException,
OperationCanceledException,
DirectoryNotFoundException,
UnauthorizedAccessException,
PathTooLongException,
DriveNotFoundException,
MissingMethodException,
TargetInvocationException
java.lang.ThrowableArgumentExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionCultureNotFoundExceptionArgumentNullExceptionFileNotFoundExceptionIOExceptionInvalidOperationExceptionOperationCanceledExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionPathTooLongExceptionDriveNotFoundExceptionMissingMethodExceptionTargetInvocationExceptionpublic void MoveFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
boolean overwrite)
throws java.lang.Throwable,
ArgumentException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
CultureNotFoundException,
ArgumentNullException,
FileNotFoundException,
IOException,
InvalidOperationException,
OperationCanceledException,
DirectoryNotFoundException,
UnauthorizedAccessException,
PathTooLongException,
DriveNotFoundException,
MissingMethodException,
TargetInvocationException
java.lang.ThrowableArgumentExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionCultureNotFoundExceptionArgumentNullExceptionFileNotFoundExceptionIOExceptionInvalidOperationExceptionOperationCanceledExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionPathTooLongExceptionDriveNotFoundExceptionMissingMethodExceptionTargetInvocationExceptionpublic void MoveFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
UIOption showUI)
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
CultureNotFoundException,
ArgumentNullException,
FileNotFoundException,
IOException,
OperationCanceledException,
DirectoryNotFoundException,
UnauthorizedAccessException,
PathTooLongException,
DriveNotFoundException,
MissingMethodException,
TargetInvocationException
java.lang.ThrowableArgumentExceptionInvalidOperationExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionCultureNotFoundExceptionArgumentNullExceptionFileNotFoundExceptionIOExceptionOperationCanceledExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionPathTooLongExceptionDriveNotFoundExceptionMissingMethodExceptionTargetInvocationExceptionpublic void MoveFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
UIOption showUI,
UICancelOption onUserCancel)
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
CultureNotFoundException,
ArgumentNullException,
FileNotFoundException,
IOException,
OperationCanceledException,
DirectoryNotFoundException,
UnauthorizedAccessException,
PathTooLongException,
DriveNotFoundException,
MissingMethodException,
TargetInvocationException
java.lang.ThrowableArgumentExceptionInvalidOperationExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionCultureNotFoundExceptionArgumentNullExceptionFileNotFoundExceptionIOExceptionOperationCanceledExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionPathTooLongExceptionDriveNotFoundExceptionMissingMethodExceptionTargetInvocationExceptionpublic TextFieldParser OpenTextFieldParser(java.lang.String file) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, RegexParseException, RankException, ArrayTypeMismatchException, InvalidOperationException, OutOfMemoryException, ExternalException, CultureNotFoundException, FileNotFoundException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionRegexParseExceptionRankExceptionArrayTypeMismatchExceptionInvalidOperationExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionFileNotFoundExceptionpublic TextFieldParser OpenTextFieldParser(java.lang.String file, int... fieldWidths) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, RegexParseException, RankException, ArrayTypeMismatchException, InvalidOperationException, OutOfMemoryException, ExternalException, CultureNotFoundException, FileNotFoundException, InvalidEnumArgumentException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionRegexParseExceptionRankExceptionArrayTypeMismatchExceptionInvalidOperationExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionFileNotFoundExceptionInvalidEnumArgumentExceptionpublic TextFieldParser OpenTextFieldParser(java.lang.String dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, RegexParseException, RankException, ArrayTypeMismatchException, InvalidOperationException, OutOfMemoryException, ExternalException, CultureNotFoundException, FileNotFoundException, InvalidEnumArgumentException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionRegexParseExceptionRankExceptionArrayTypeMismatchExceptionInvalidOperationExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionFileNotFoundExceptionInvalidEnumArgumentExceptionpublic TextFieldParser OpenTextFieldParser(java.lang.String file, java.lang.String... delimiters) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, RegexParseException, RankException, ArrayTypeMismatchException, InvalidOperationException, OutOfMemoryException, ExternalException, CultureNotFoundException, FileNotFoundException, InvalidEnumArgumentException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionRegexParseExceptionRankExceptionArrayTypeMismatchExceptionInvalidOperationExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionFileNotFoundExceptionInvalidEnumArgumentExceptionpublic StreamReader OpenTextFileReader(java.lang.String file) throws java.lang.Throwable, NotSupportedException, ArgumentNullException, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException
public StreamReader OpenTextFileReader(java.lang.String file, Encoding encoding) throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException, OutOfMemoryException, ExternalException, ArgumentNullException, InvalidOperationException, CultureNotFoundException, ArgumentException, IndexOutOfRangeException, FormatException, ArgumentOutOfRangeException, RankException, ArrayTypeMismatchException
java.lang.ThrowablePlatformNotSupportedExceptionNotSupportedExceptionOutOfMemoryExceptionExternalExceptionArgumentNullExceptionInvalidOperationExceptionCultureNotFoundExceptionArgumentExceptionIndexOutOfRangeExceptionFormatExceptionArgumentOutOfRangeExceptionRankExceptionArrayTypeMismatchExceptionpublic StreamWriter OpenTextFileWriter(java.lang.String file, boolean append) throws java.lang.Throwable, NotSupportedException, ArgumentNullException, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException
public StreamWriter OpenTextFileWriter(java.lang.String file, boolean append, Encoding encoding) throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException, OutOfMemoryException, ExternalException, ArgumentNullException, InvalidOperationException, CultureNotFoundException, ArgumentException, IndexOutOfRangeException, FormatException, ArgumentOutOfRangeException, RankException, ArrayTypeMismatchException
java.lang.ThrowablePlatformNotSupportedExceptionNotSupportedExceptionOutOfMemoryExceptionExternalExceptionArgumentNullExceptionInvalidOperationExceptionCultureNotFoundExceptionArgumentExceptionIndexOutOfRangeExceptionFormatExceptionArgumentOutOfRangeExceptionRankExceptionArrayTypeMismatchExceptionpublic byte[] ReadAllBytes(java.lang.String file)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException,
SerializationException,
NotSupportedException,
CultureNotFoundException,
IOException,
InvalidOperationException,
ArrayTypeMismatchException,
WaitHandleCannotBeOpenedException,
AbandonedMutexException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionFormatExceptionOutOfMemoryExceptionSerializationExceptionNotSupportedExceptionCultureNotFoundExceptionIOExceptionInvalidOperationExceptionArrayTypeMismatchExceptionWaitHandleCannotBeOpenedExceptionAbandonedMutexExceptionpublic java.lang.String ReadAllText(java.lang.String file)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
OutOfMemoryException
public java.lang.String ReadAllText(java.lang.String file,
Encoding encoding)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
ArgumentOutOfRangeException,
NotSupportedException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
OutOfMemoryException
public void RenameDirectory(java.lang.String directory,
java.lang.String newName)
throws java.lang.Throwable,
NotSupportedException,
ArgumentException,
ArgumentNullException,
IndexOutOfRangeException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
CultureNotFoundException,
IOException,
DirectoryNotFoundException
public void RenameFile(java.lang.String file,
java.lang.String newName)
throws java.lang.Throwable,
PlatformNotSupportedException,
NotSupportedException,
OutOfMemoryException,
ExternalException,
ArgumentNullException,
InvalidOperationException,
CultureNotFoundException,
ArgumentException,
IndexOutOfRangeException,
FormatException,
ArgumentOutOfRangeException,
RankException,
ArrayTypeMismatchException,
FileNotFoundException,
IOException
java.lang.ThrowablePlatformNotSupportedExceptionNotSupportedExceptionOutOfMemoryExceptionExternalExceptionArgumentNullExceptionInvalidOperationExceptionCultureNotFoundExceptionArgumentExceptionIndexOutOfRangeExceptionFormatExceptionArgumentOutOfRangeExceptionRankExceptionArrayTypeMismatchExceptionFileNotFoundExceptionIOExceptionpublic void setCurrentDirectory(java.lang.String CurrentDirectory)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
IndexOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
CultureNotFoundException
public void setJCOInstance(JCObject instance)
setJCOInstance in class NetObjectpublic void WriteAllBytes(java.lang.String file,
byte[] data,
boolean append)
throws java.lang.Throwable,
PlatformNotSupportedException,
NullReferenceException,
NotSupportedException,
OutOfMemoryException,
ExternalException,
ArgumentNullException,
ArgumentOutOfRangeException,
ArgumentException,
InvalidOperationException,
CultureNotFoundException,
ObjectDisposedException,
FormatException,
SerializationException
java.lang.ThrowablePlatformNotSupportedExceptionNullReferenceExceptionNotSupportedExceptionOutOfMemoryExceptionExternalExceptionArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionCultureNotFoundExceptionObjectDisposedExceptionFormatExceptionSerializationExceptionpublic void WriteAllBytes(java.lang.String dupParam0,
JCORefOut dupParam1,
boolean dupParam2)
throws java.lang.Throwable,
PlatformNotSupportedException,
NullReferenceException,
NotSupportedException,
OutOfMemoryException,
ExternalException,
ArgumentNullException,
ArgumentOutOfRangeException,
ArgumentException,
InvalidOperationException,
CultureNotFoundException,
ObjectDisposedException,
FormatException,
SerializationException
java.lang.ThrowablePlatformNotSupportedExceptionNullReferenceExceptionNotSupportedExceptionOutOfMemoryExceptionExternalExceptionArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionCultureNotFoundExceptionObjectDisposedExceptionFormatExceptionSerializationExceptionpublic void WriteAllText(java.lang.String file,
java.lang.String text,
boolean append)
throws java.lang.Throwable,
PlatformNotSupportedException,
NotSupportedException,
OutOfMemoryException,
ExternalException,
ArgumentNullException,
InvalidOperationException,
CultureNotFoundException,
ArgumentException,
IndexOutOfRangeException,
FormatException,
ArgumentOutOfRangeException,
ArrayTypeMismatchException,
ObjectDisposedException
java.lang.ThrowablePlatformNotSupportedExceptionNotSupportedExceptionOutOfMemoryExceptionExternalExceptionArgumentNullExceptionInvalidOperationExceptionCultureNotFoundExceptionArgumentExceptionIndexOutOfRangeExceptionFormatExceptionArgumentOutOfRangeExceptionArrayTypeMismatchExceptionObjectDisposedExceptionpublic void WriteAllText(java.lang.String file,
java.lang.String text,
boolean append,
Encoding encoding)
throws java.lang.Throwable,
PlatformNotSupportedException,
NullReferenceException,
NotSupportedException,
OutOfMemoryException,
ExternalException,
ArgumentNullException,
ArgumentOutOfRangeException,
ArgumentException,
InvalidOperationException,
CultureNotFoundException,
ObjectDisposedException,
FormatException,
MissingMethodException,
TargetInvocationException,
ArrayTypeMismatchException
java.lang.ThrowablePlatformNotSupportedExceptionNullReferenceExceptionNotSupportedExceptionOutOfMemoryExceptionExternalExceptionArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionCultureNotFoundExceptionObjectDisposedExceptionFormatExceptionMissingMethodExceptionTargetInvocationExceptionArrayTypeMismatchException