public class FileSystem extends NetObject
.NET documentation at https://docs.microsoft.com/en-us/dotnet/api/Microsoft.VisualBasic.FileIO.FileSystem
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, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
|
static java.lang.String |
assemblyShortName
Assembly name: Microsoft.VisualBasic
|
static java.lang.String |
className
Qualified class name: Microsoft.VisualBasic.FileIO.FileSystem
|
static JCType |
classType
The type managed from JCOBridge.
|
| Constructor and Description |
|---|
FileSystem() |
FileSystem(java.lang.Object instance)
Internal constructor.
|
| Modifier and Type | Method and Description |
|---|---|
static FileSystem |
cast(IJCOBridgeReflected from)
Try to cast the
IJCOBridgeReflected instance into FileSystem, a cast assert is made to check if types are compatible. |
static java.lang.String |
CombinePath(java.lang.String baseDirectory,
java.lang.String relativePath) |
static void |
CopyDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName) |
static void |
CopyDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
boolean overwrite) |
static void |
CopyDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
UIOption showUI) |
static void |
CopyDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
UIOption showUI,
UICancelOption onUserCancel) |
static void |
CopyFile(java.lang.String sourceFileName,
java.lang.String destinationFileName) |
static void |
CopyFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
boolean overwrite) |
static void |
CopyFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
UIOption showUI) |
static void |
CopyFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
UIOption showUI,
UICancelOption onUserCancel) |
static void |
CreateDirectory(java.lang.String directory) |
static void |
DeleteDirectory(java.lang.String directory,
DeleteDirectoryOption onDirectoryNotEmpty) |
static void |
DeleteDirectory(java.lang.String directory,
UIOption showUI,
RecycleOption recycle) |
static void |
DeleteDirectory(java.lang.String directory,
UIOption showUI,
RecycleOption recycle,
UICancelOption onUserCancel) |
static void |
DeleteFile(java.lang.String file) |
static void |
DeleteFile(java.lang.String file,
UIOption showUI,
RecycleOption recycle) |
static void |
DeleteFile(java.lang.String file,
UIOption showUI,
RecycleOption recycle,
UICancelOption onUserCancel) |
static boolean |
DirectoryExists(java.lang.String directory) |
static boolean |
FileExists(java.lang.String file) |
static java.lang.String |
getCurrentDirectory() |
static DirectoryInfo |
GetDirectoryInfo(java.lang.String directory) |
static DriveInfo |
GetDriveInfo(java.lang.String drive) |
static 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
|
static java.lang.String |
GetName(java.lang.String path) |
static java.lang.String |
GetParentPath(java.lang.String path) |
static java.lang.String |
GetTempFileName() |
static void |
MoveDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName) |
static void |
MoveDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
boolean overwrite) |
static void |
MoveDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
UIOption showUI) |
static void |
MoveDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
UIOption showUI,
UICancelOption onUserCancel) |
static void |
MoveFile(java.lang.String sourceFileName,
java.lang.String destinationFileName) |
static void |
MoveFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
boolean overwrite) |
static void |
MoveFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
UIOption showUI) |
static void |
MoveFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
UIOption showUI,
UICancelOption onUserCancel) |
static TextFieldParser |
OpenTextFieldParser(java.lang.String file) |
static TextFieldParser |
OpenTextFieldParser(java.lang.String file,
int... fieldWidths) |
static TextFieldParser |
OpenTextFieldParser(java.lang.String dupParam0,
JCORefOut dupParam1) |
static TextFieldParser |
OpenTextFieldParser(java.lang.String file,
java.lang.String... delimiters) |
static StreamReader |
OpenTextFileReader(java.lang.String file) |
static StreamReader |
OpenTextFileReader(java.lang.String file,
Encoding encoding) |
static StreamWriter |
OpenTextFileWriter(java.lang.String file,
boolean append) |
static StreamWriter |
OpenTextFileWriter(java.lang.String file,
boolean append,
Encoding encoding) |
static byte[] |
ReadAllBytes(java.lang.String file) |
static java.lang.String |
ReadAllText(java.lang.String file) |
static java.lang.String |
ReadAllText(java.lang.String file,
Encoding encoding) |
static void |
RenameDirectory(java.lang.String directory,
java.lang.String newName) |
static void |
RenameFile(java.lang.String file,
java.lang.String newName) |
static void |
setCurrentDirectory(java.lang.String CurrentDirectory) |
void |
setJCOInstance(JCObject instance) |
static void |
WriteAllBytes(java.lang.String file,
byte[] data,
boolean append) |
static void |
WriteAllBytes(java.lang.String dupParam0,
JCORefOut dupParam1,
boolean dupParam2) |
static void |
WriteAllText(java.lang.String file,
java.lang.String text,
boolean append) |
static 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 FileSystem()
throws java.lang.Throwable
java.lang.Throwablepublic FileSystem(java.lang.Object instance)
throws java.lang.Throwable
java.lang.Throwablepublic static FileSystem cast(IJCOBridgeReflected from) throws java.lang.Throwable
IJCOBridgeReflected instance into FileSystem, a cast assert is made to check if types are compatible.from - IJCOBridgeReflected instance to be castedFileSystem instancejava.lang.Throwable - in case of error during cast operationpublic static java.lang.String CombinePath(java.lang.String baseDirectory,
java.lang.String relativePath)
throws java.lang.Throwable,
ArgumentNullException,
TypeLoadException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotSupportedException,
CultureNotFoundException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException,
FormatException,
PathTooLongException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
DriveNotFoundException,
OperationCanceledException
java.lang.ThrowableArgumentNullExceptionTypeLoadExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotSupportedExceptionCultureNotFoundExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionFormatExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic static void CopyDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
PathTooLongException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
DriveNotFoundException,
OperationCanceledException,
NotSupportedException,
NullReferenceException,
PlatformNotSupportedException,
Win32Exception,
SecurityException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionNotSupportedExceptionNullReferenceExceptionPlatformNotSupportedExceptionWin32ExceptionSecurityExceptionpublic static void CopyDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
boolean overwrite)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
PathTooLongException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
DriveNotFoundException,
OperationCanceledException,
NotSupportedException,
NullReferenceException,
PlatformNotSupportedException,
Win32Exception,
SecurityException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionNotSupportedExceptionNullReferenceExceptionPlatformNotSupportedExceptionWin32ExceptionSecurityExceptionpublic static void CopyDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
UIOption showUI)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
ArgumentOutOfRangeException,
NotImplementedException,
IndexOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
FormatException,
InvalidEnumArgumentException,
PathTooLongException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
DriveNotFoundException,
OperationCanceledException,
NotSupportedException,
NullReferenceException,
PlatformNotSupportedException,
Win32Exception,
SecurityException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionArgumentOutOfRangeExceptionNotImplementedExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionFormatExceptionInvalidEnumArgumentExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionNotSupportedExceptionNullReferenceExceptionPlatformNotSupportedExceptionWin32ExceptionSecurityExceptionpublic static void CopyDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
UIOption showUI,
UICancelOption onUserCancel)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
ArgumentOutOfRangeException,
NotImplementedException,
IndexOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
FormatException,
InvalidEnumArgumentException,
PathTooLongException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
DriveNotFoundException,
OperationCanceledException,
NotSupportedException,
NullReferenceException,
PlatformNotSupportedException,
Win32Exception,
SecurityException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionArgumentOutOfRangeExceptionNotImplementedExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionFormatExceptionInvalidEnumArgumentExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionNotSupportedExceptionNullReferenceExceptionPlatformNotSupportedExceptionWin32ExceptionSecurityExceptionpublic static void CopyFile(java.lang.String sourceFileName,
java.lang.String destinationFileName)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
PathTooLongException,
FileNotFoundException,
IOException,
PlatformNotSupportedException,
Win32Exception,
SecurityException,
OperationCanceledException,
DirectoryNotFoundException,
UnauthorizedAccessException,
DriveNotFoundException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionPathTooLongExceptionFileNotFoundExceptionIOExceptionPlatformNotSupportedExceptionWin32ExceptionSecurityExceptionOperationCanceledExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionDriveNotFoundExceptionpublic static void CopyFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
boolean overwrite)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
PathTooLongException,
FileNotFoundException,
IOException,
PlatformNotSupportedException,
Win32Exception,
SecurityException,
OperationCanceledException,
DirectoryNotFoundException,
UnauthorizedAccessException,
DriveNotFoundException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionPathTooLongExceptionFileNotFoundExceptionIOExceptionPlatformNotSupportedExceptionWin32ExceptionSecurityExceptionOperationCanceledExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionDriveNotFoundExceptionpublic static void CopyFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
UIOption showUI)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
ArgumentOutOfRangeException,
NotImplementedException,
IndexOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
PathTooLongException,
FileNotFoundException,
IOException,
PlatformNotSupportedException,
Win32Exception,
SecurityException,
OperationCanceledException,
DirectoryNotFoundException,
UnauthorizedAccessException,
DriveNotFoundException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionArgumentOutOfRangeExceptionNotImplementedExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionPathTooLongExceptionFileNotFoundExceptionIOExceptionPlatformNotSupportedExceptionWin32ExceptionSecurityExceptionOperationCanceledExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionDriveNotFoundExceptionpublic static void CopyFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
UIOption showUI,
UICancelOption onUserCancel)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
ArgumentOutOfRangeException,
NotImplementedException,
IndexOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
PathTooLongException,
FileNotFoundException,
IOException,
PlatformNotSupportedException,
Win32Exception,
SecurityException,
OperationCanceledException,
DirectoryNotFoundException,
UnauthorizedAccessException,
DriveNotFoundException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionArgumentOutOfRangeExceptionNotImplementedExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionPathTooLongExceptionFileNotFoundExceptionIOExceptionPlatformNotSupportedExceptionWin32ExceptionSecurityExceptionOperationCanceledExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionDriveNotFoundExceptionpublic static void CreateDirectory(java.lang.String directory)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PathTooLongException,
ArgumentOutOfRangeException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
DriveNotFoundException,
OperationCanceledException,
InvalidOperationException,
NotSupportedException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
CultureNotFoundException,
MissingManifestResourceException,
ObjectDisposedException,
FormatException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionPathTooLongExceptionArgumentOutOfRangeExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionInvalidOperationExceptionNotSupportedExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionFormatExceptionpublic static void DeleteDirectory(java.lang.String directory,
DeleteDirectoryOption onDirectoryNotEmpty)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
PathTooLongException,
IndexOutOfRangeException,
NotSupportedException,
DirectoryNotFoundException,
IOException,
PlatformNotSupportedException,
Win32Exception,
SecurityException,
OperationCanceledException,
FileNotFoundException,
UnauthorizedAccessException,
DriveNotFoundException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionPathTooLongExceptionIndexOutOfRangeExceptionNotSupportedExceptionDirectoryNotFoundExceptionIOExceptionPlatformNotSupportedExceptionWin32ExceptionSecurityExceptionOperationCanceledExceptionFileNotFoundExceptionUnauthorizedAccessExceptionDriveNotFoundExceptionpublic static void DeleteDirectory(java.lang.String directory,
UIOption showUI,
RecycleOption recycle)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
ArgumentOutOfRangeException,
NotImplementedException,
IndexOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
FormatException,
InvalidEnumArgumentException,
PathTooLongException,
NotSupportedException,
DirectoryNotFoundException,
IOException,
PlatformNotSupportedException,
Win32Exception,
SecurityException,
OperationCanceledException,
FileNotFoundException,
UnauthorizedAccessException,
DriveNotFoundException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionArgumentOutOfRangeExceptionNotImplementedExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionFormatExceptionInvalidEnumArgumentExceptionPathTooLongExceptionNotSupportedExceptionDirectoryNotFoundExceptionIOExceptionPlatformNotSupportedExceptionWin32ExceptionSecurityExceptionOperationCanceledExceptionFileNotFoundExceptionUnauthorizedAccessExceptionDriveNotFoundExceptionpublic static void DeleteDirectory(java.lang.String directory,
UIOption showUI,
RecycleOption recycle,
UICancelOption onUserCancel)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
ArgumentOutOfRangeException,
NotImplementedException,
IndexOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
FormatException,
InvalidEnumArgumentException,
PathTooLongException,
NotSupportedException,
DirectoryNotFoundException,
IOException,
PlatformNotSupportedException,
Win32Exception,
SecurityException,
OperationCanceledException,
FileNotFoundException,
UnauthorizedAccessException,
DriveNotFoundException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionArgumentOutOfRangeExceptionNotImplementedExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionFormatExceptionInvalidEnumArgumentExceptionPathTooLongExceptionNotSupportedExceptionDirectoryNotFoundExceptionIOExceptionPlatformNotSupportedExceptionWin32ExceptionSecurityExceptionOperationCanceledExceptionFileNotFoundExceptionUnauthorizedAccessExceptionDriveNotFoundExceptionpublic static void DeleteFile(java.lang.String file)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
PathTooLongException,
FileNotFoundException,
PlatformNotSupportedException,
Win32Exception,
SecurityException,
OperationCanceledException,
DirectoryNotFoundException,
UnauthorizedAccessException,
DriveNotFoundException,
IOException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionPathTooLongExceptionFileNotFoundExceptionPlatformNotSupportedExceptionWin32ExceptionSecurityExceptionOperationCanceledExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionDriveNotFoundExceptionIOExceptionpublic static void DeleteFile(java.lang.String file,
UIOption showUI,
RecycleOption recycle)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
ArgumentOutOfRangeException,
NotImplementedException,
IndexOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
PathTooLongException,
FileNotFoundException,
PlatformNotSupportedException,
Win32Exception,
SecurityException,
OperationCanceledException,
DirectoryNotFoundException,
UnauthorizedAccessException,
DriveNotFoundException,
IOException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionArgumentOutOfRangeExceptionNotImplementedExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionPathTooLongExceptionFileNotFoundExceptionPlatformNotSupportedExceptionWin32ExceptionSecurityExceptionOperationCanceledExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionDriveNotFoundExceptionIOExceptionpublic static void DeleteFile(java.lang.String file,
UIOption showUI,
RecycleOption recycle,
UICancelOption onUserCancel)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
ArgumentOutOfRangeException,
NotImplementedException,
IndexOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
PathTooLongException,
FileNotFoundException,
PlatformNotSupportedException,
Win32Exception,
SecurityException,
OperationCanceledException,
DirectoryNotFoundException,
UnauthorizedAccessException,
DriveNotFoundException,
IOException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionArgumentOutOfRangeExceptionNotImplementedExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionPathTooLongExceptionFileNotFoundExceptionPlatformNotSupportedExceptionWin32ExceptionSecurityExceptionOperationCanceledExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionDriveNotFoundExceptionIOExceptionpublic static boolean DirectoryExists(java.lang.String directory)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PathTooLongException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
DriveNotFoundException,
OperationCanceledException,
NotSupportedException,
IndexOutOfRangeException,
InvalidOperationException,
ArgumentOutOfRangeException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionNotSupportedExceptionIndexOutOfRangeExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionpublic static boolean FileExists(java.lang.String file)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
TypeLoadException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotSupportedException,
CultureNotFoundException,
PathTooLongException,
ArgumentOutOfRangeException,
IndexOutOfRangeException
public static java.lang.String getCurrentDirectory()
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
ObjectDisposedException,
OutOfMemoryException,
NotSupportedException,
ArgumentOutOfRangeException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
IndexOutOfRangeException,
MissingManifestResourceException,
InvalidOperationException,
FormatException,
NullReferenceException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionObjectDisposedExceptionOutOfMemoryExceptionNotSupportedExceptionArgumentOutOfRangeExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionInvalidOperationExceptionFormatExceptionNullReferenceExceptionpublic static DirectoryInfo GetDirectoryInfo(java.lang.String directory) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, NotSupportedException, IndexOutOfRangeException
public static DriveInfo GetDriveInfo(java.lang.String drive) throws java.lang.Throwable, ArgumentNullException, IndexOutOfRangeException, ArgumentException, ArgumentOutOfRangeException, PathTooLongException, OutOfMemoryException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, InvalidOperationException
java.lang.ThrowableArgumentNullExceptionIndexOutOfRangeExceptionArgumentExceptionArgumentOutOfRangeExceptionPathTooLongExceptionOutOfMemoryExceptionNotSupportedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionInvalidOperationExceptionpublic static FileInfo GetFileInfo(java.lang.String file) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotSupportedException, ArgumentOutOfRangeException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, NullReferenceException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotSupportedExceptionArgumentOutOfRangeExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionNullReferenceExceptionpublic 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 static java.lang.String GetName(java.lang.String path)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
ArgumentOutOfRangeException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionArgumentOutOfRangeExceptionpublic static java.lang.String GetParentPath(java.lang.String path)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PathTooLongException,
ArgumentOutOfRangeException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
DriveNotFoundException,
OperationCanceledException,
InvalidOperationException,
NotSupportedException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
CultureNotFoundException,
MissingManifestResourceException,
ObjectDisposedException,
FormatException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionPathTooLongExceptionArgumentOutOfRangeExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionInvalidOperationExceptionNotSupportedExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionFormatExceptionpublic static java.lang.String GetTempFileName()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
OutOfMemoryException,
IndexOutOfRangeException,
CultureNotFoundException,
InvalidOperationException,
NotSupportedException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionCultureNotFoundExceptionInvalidOperationExceptionNotSupportedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic static void MoveDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
PathTooLongException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
DriveNotFoundException,
OperationCanceledException,
NotSupportedException,
NullReferenceException,
PlatformNotSupportedException,
Win32Exception,
SecurityException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionNotSupportedExceptionNullReferenceExceptionPlatformNotSupportedExceptionWin32ExceptionSecurityExceptionpublic static void MoveDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
boolean overwrite)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
PathTooLongException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
DriveNotFoundException,
OperationCanceledException,
NotSupportedException,
NullReferenceException,
PlatformNotSupportedException,
Win32Exception,
SecurityException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionNotSupportedExceptionNullReferenceExceptionPlatformNotSupportedExceptionWin32ExceptionSecurityExceptionpublic static void MoveDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
UIOption showUI)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
ArgumentOutOfRangeException,
NotImplementedException,
IndexOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
FormatException,
InvalidEnumArgumentException,
PathTooLongException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
DriveNotFoundException,
OperationCanceledException,
NotSupportedException,
NullReferenceException,
PlatformNotSupportedException,
Win32Exception,
SecurityException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionArgumentOutOfRangeExceptionNotImplementedExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionFormatExceptionInvalidEnumArgumentExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionNotSupportedExceptionNullReferenceExceptionPlatformNotSupportedExceptionWin32ExceptionSecurityExceptionpublic static void MoveDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationDirectoryName,
UIOption showUI,
UICancelOption onUserCancel)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
ArgumentOutOfRangeException,
NotImplementedException,
IndexOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
FormatException,
InvalidEnumArgumentException,
PathTooLongException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
DriveNotFoundException,
OperationCanceledException,
NotSupportedException,
NullReferenceException,
PlatformNotSupportedException,
Win32Exception,
SecurityException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionArgumentOutOfRangeExceptionNotImplementedExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionFormatExceptionInvalidEnumArgumentExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionNotSupportedExceptionNullReferenceExceptionPlatformNotSupportedExceptionWin32ExceptionSecurityExceptionpublic static void MoveFile(java.lang.String sourceFileName,
java.lang.String destinationFileName)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
PathTooLongException,
FileNotFoundException,
IOException,
PlatformNotSupportedException,
Win32Exception,
SecurityException,
OperationCanceledException,
DirectoryNotFoundException,
UnauthorizedAccessException,
DriveNotFoundException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionPathTooLongExceptionFileNotFoundExceptionIOExceptionPlatformNotSupportedExceptionWin32ExceptionSecurityExceptionOperationCanceledExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionDriveNotFoundExceptionpublic static void MoveFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
boolean overwrite)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException,
ArgumentOutOfRangeException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
PathTooLongException,
FileNotFoundException,
IOException,
PlatformNotSupportedException,
Win32Exception,
SecurityException,
OperationCanceledException,
DirectoryNotFoundException,
UnauthorizedAccessException,
DriveNotFoundException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionPathTooLongExceptionFileNotFoundExceptionIOExceptionPlatformNotSupportedExceptionWin32ExceptionSecurityExceptionOperationCanceledExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionDriveNotFoundExceptionpublic static void MoveFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
UIOption showUI)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
ArgumentOutOfRangeException,
NotImplementedException,
IndexOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
PathTooLongException,
FileNotFoundException,
IOException,
PlatformNotSupportedException,
Win32Exception,
SecurityException,
OperationCanceledException,
DirectoryNotFoundException,
UnauthorizedAccessException,
DriveNotFoundException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionArgumentOutOfRangeExceptionNotImplementedExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionPathTooLongExceptionFileNotFoundExceptionIOExceptionPlatformNotSupportedExceptionWin32ExceptionSecurityExceptionOperationCanceledExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionDriveNotFoundExceptionpublic static void MoveFile(java.lang.String sourceFileName,
java.lang.String destinationFileName,
UIOption showUI,
UICancelOption onUserCancel)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
ArgumentOutOfRangeException,
NotImplementedException,
IndexOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
FormatException,
InvalidEnumArgumentException,
NotSupportedException,
PathTooLongException,
FileNotFoundException,
IOException,
PlatformNotSupportedException,
Win32Exception,
SecurityException,
OperationCanceledException,
DirectoryNotFoundException,
UnauthorizedAccessException,
DriveNotFoundException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionArgumentOutOfRangeExceptionNotImplementedExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionFormatExceptionInvalidEnumArgumentExceptionNotSupportedExceptionPathTooLongExceptionFileNotFoundExceptionIOExceptionPlatformNotSupportedExceptionWin32ExceptionSecurityExceptionOperationCanceledExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionDriveNotFoundExceptionpublic static TextFieldParser OpenTextFieldParser(java.lang.String file) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, OutOfMemoryException, IndexOutOfRangeException, MissingManifestResourceException, NullReferenceException, ObjectDisposedException, RankException, NotSupportedException, SecurityException, NotImplementedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionNullReferenceExceptionObjectDisposedExceptionRankExceptionNotSupportedExceptionSecurityExceptionNotImplementedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic static TextFieldParser OpenTextFieldParser(java.lang.String file, int... fieldWidths) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, OutOfMemoryException, IndexOutOfRangeException, MissingManifestResourceException, NullReferenceException, ObjectDisposedException, RankException, NotSupportedException, SecurityException, NotImplementedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, InvalidEnumArgumentException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionNullReferenceExceptionObjectDisposedExceptionRankExceptionNotSupportedExceptionSecurityExceptionNotImplementedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionInvalidEnumArgumentExceptionpublic static TextFieldParser OpenTextFieldParser(java.lang.String dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, OutOfMemoryException, IndexOutOfRangeException, MissingManifestResourceException, NullReferenceException, ObjectDisposedException, RankException, NotSupportedException, SecurityException, NotImplementedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, InvalidEnumArgumentException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionNullReferenceExceptionObjectDisposedExceptionRankExceptionNotSupportedExceptionSecurityExceptionNotImplementedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionInvalidEnumArgumentExceptionpublic static TextFieldParser OpenTextFieldParser(java.lang.String file, java.lang.String... delimiters) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, OutOfMemoryException, IndexOutOfRangeException, MissingManifestResourceException, NullReferenceException, ObjectDisposedException, RankException, NotSupportedException, SecurityException, NotImplementedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, InvalidEnumArgumentException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionNullReferenceExceptionObjectDisposedExceptionRankExceptionNotSupportedExceptionSecurityExceptionNotImplementedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionInvalidEnumArgumentExceptionpublic static StreamReader OpenTextFileReader(java.lang.String file) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, IndexOutOfRangeException, CultureNotFoundException, InvalidOperationException, NotSupportedException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, PathTooLongException, SecurityException, IOException
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionArgumentExceptionIndexOutOfRangeExceptionCultureNotFoundExceptionInvalidOperationExceptionNotSupportedExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionPathTooLongExceptionSecurityExceptionIOExceptionpublic static StreamReader OpenTextFileReader(java.lang.String file, Encoding encoding) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotSupportedException, ArgumentOutOfRangeException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, NullReferenceException, SecurityException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotSupportedExceptionArgumentOutOfRangeExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionNullReferenceExceptionSecurityExceptionpublic static StreamWriter OpenTextFileWriter(java.lang.String file, boolean append) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, IndexOutOfRangeException, CultureNotFoundException, InvalidOperationException, NotSupportedException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, PathTooLongException, SecurityException, IOException, FormatException
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionArgumentExceptionIndexOutOfRangeExceptionCultureNotFoundExceptionInvalidOperationExceptionNotSupportedExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionPathTooLongExceptionSecurityExceptionIOExceptionFormatExceptionpublic static StreamWriter OpenTextFileWriter(java.lang.String file, boolean append, Encoding encoding) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotSupportedException, ArgumentOutOfRangeException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, NullReferenceException, SecurityException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotSupportedExceptionArgumentOutOfRangeExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionNullReferenceExceptionSecurityExceptionpublic static byte[] ReadAllBytes(java.lang.String file)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
ArgumentOutOfRangeException,
FormatException,
PathTooLongException,
IndexOutOfRangeException,
NotSupportedException,
InvalidOperationException,
NullReferenceException,
SecurityException,
IOException,
EndOfStreamException
public static java.lang.String ReadAllText(java.lang.String file)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
ArgumentOutOfRangeException,
FormatException,
PathTooLongException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
DriveNotFoundException,
OperationCanceledException,
NotSupportedException,
InvalidOperationException,
NullReferenceException,
SecurityException,
OutOfMemoryException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionArgumentOutOfRangeExceptionFormatExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionNotSupportedExceptionInvalidOperationExceptionNullReferenceExceptionSecurityExceptionOutOfMemoryExceptionpublic static java.lang.String ReadAllText(java.lang.String file,
Encoding encoding)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
ArgumentOutOfRangeException,
FormatException,
PathTooLongException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
DriveNotFoundException,
OperationCanceledException,
NotSupportedException,
InvalidOperationException,
NullReferenceException,
SecurityException,
OutOfMemoryException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionArgumentOutOfRangeExceptionFormatExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionNotSupportedExceptionInvalidOperationExceptionNullReferenceExceptionSecurityExceptionOutOfMemoryExceptionpublic static void RenameDirectory(java.lang.String directory,
java.lang.String newName)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PathTooLongException,
ArgumentOutOfRangeException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
DriveNotFoundException,
OperationCanceledException,
InvalidOperationException,
NotSupportedException,
NotImplementedException,
CultureNotFoundException,
MissingManifestResourceException,
ObjectDisposedException,
FormatException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionPathTooLongExceptionArgumentOutOfRangeExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionInvalidOperationExceptionNotSupportedExceptionNotImplementedExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionFormatExceptionpublic static void RenameFile(java.lang.String file,
java.lang.String newName)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotSupportedException,
ArgumentOutOfRangeException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException,
PathTooLongException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
DriveNotFoundException,
OperationCanceledException,
NullReferenceException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotSupportedExceptionArgumentOutOfRangeExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionNullReferenceExceptionpublic static void setCurrentDirectory(java.lang.String CurrentDirectory)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PathTooLongException,
ArgumentOutOfRangeException,
FormatException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
DriveNotFoundException,
OperationCanceledException,
NotSupportedException
public void setJCOInstance(JCObject instance)
setJCOInstance in class NetObjectpublic static void WriteAllBytes(java.lang.String file,
byte[] data,
boolean append)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
NotSupportedException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
FormatException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException,
PathTooLongException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
DriveNotFoundException,
OperationCanceledException,
NullReferenceException,
SecurityException,
WaitHandleCannotBeOpenedException,
SynchronizationLockException,
EndOfStreamException,
ThreadAbortException,
TaskSchedulerException,
TaskCanceledException,
AggregateException,
SemaphoreFullException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionNotSupportedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionFormatExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionNullReferenceExceptionSecurityExceptionWaitHandleCannotBeOpenedExceptionSynchronizationLockExceptionEndOfStreamExceptionThreadAbortExceptionTaskSchedulerExceptionTaskCanceledExceptionAggregateExceptionSemaphoreFullExceptionpublic static void WriteAllBytes(java.lang.String dupParam0,
JCORefOut dupParam1,
boolean dupParam2)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
NotSupportedException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
FormatException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException,
PathTooLongException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
DriveNotFoundException,
OperationCanceledException,
NullReferenceException,
SecurityException,
WaitHandleCannotBeOpenedException,
SynchronizationLockException,
EndOfStreamException,
ThreadAbortException,
TaskSchedulerException,
TaskCanceledException,
AggregateException,
SemaphoreFullException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionNotSupportedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionFormatExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionNullReferenceExceptionSecurityExceptionWaitHandleCannotBeOpenedExceptionSynchronizationLockExceptionEndOfStreamExceptionThreadAbortExceptionTaskSchedulerExceptionTaskCanceledExceptionAggregateExceptionSemaphoreFullExceptionpublic static void WriteAllText(java.lang.String file,
java.lang.String text,
boolean append)
throws java.lang.Throwable,
ArgumentOutOfRangeException,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotSupportedException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException,
PathTooLongException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
DriveNotFoundException,
OperationCanceledException,
NullReferenceException,
SecurityException
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotSupportedExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionNullReferenceExceptionSecurityExceptionpublic static void WriteAllText(java.lang.String file,
java.lang.String text,
boolean append,
Encoding encoding)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
NotSupportedException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
FormatException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException,
PathTooLongException,
NullReferenceException,
SecurityException,
IOException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionNotSupportedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionFormatExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionPathTooLongExceptionNullReferenceExceptionSecurityExceptionIOException