Package microsoft.visualbasic.myservices
Class FileSystemProxy
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- microsoft.visualbasic.myservices.FileSystemProxy
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class FileSystemProxy extends NetObject
The base .NET class managing Microsoft.VisualBasic.MyServices.FileSystemProxy, Microsoft.VisualBasic, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..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
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
assemblyFullName
Fully assembly qualified name: Microsoft.VisualBasic, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.String
assemblyShortName
Assembly name: Microsoft.VisualBasicstatic java.lang.String
className
Qualified class name: Microsoft.VisualBasic.MyServices.FileSystemProxystatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description FileSystemProxy()
FileSystemProxy(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FileSystemProxy
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoFileSystemProxy
, 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 namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class Typejava.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 file, java.lang.String... delimiters)
TextFieldParser
OpenTextFieldParser(java.lang.String dupParam0, JCORefOut dupParam1)
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)
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: Microsoft.VisualBasic, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: Microsoft.VisualBasic- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: Microsoft.VisualBasic.MyServices.FileSystemProxy- See Also:
- Constant Field Values
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classNetObject
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classNetObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static FileSystemProxy cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoFileSystemProxy
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
FileSystemProxy
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
DirectoryExists
public boolean DirectoryExists(java.lang.String directory) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PathTooLongException, NotSupportedException, IndexOutOfRangeException, InvalidOperationException, ArgumentOutOfRangeException
-
FileExists
public boolean FileExists(java.lang.String file) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, ArgumentOutOfRangeException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
CultureNotFoundException
PathTooLongException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
ArgumentOutOfRangeException
NotSupportedException
-
ReadAllBytes
public byte[] ReadAllBytes(java.lang.String file) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, FormatException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, NotSupportedException, InvalidOperationException, NullReferenceException, SecurityException, EndOfStreamException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
FormatException
PathTooLongException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
NotSupportedException
InvalidOperationException
NullReferenceException
SecurityException
EndOfStreamException
-
OpenTextFieldParser
public TextFieldParser OpenTextFieldParser(java.lang.String file) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, OutOfMemoryException, IndexOutOfRangeException, MissingManifestResourceException, NotSupportedException, SecurityException, CultureNotFoundException, NotImplementedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
InvalidOperationException
OutOfMemoryException
IndexOutOfRangeException
MissingManifestResourceException
NotSupportedException
SecurityException
CultureNotFoundException
NotImplementedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
-
OpenTextFieldParser
public TextFieldParser OpenTextFieldParser(java.lang.String file, int... fieldWidths) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, OutOfMemoryException, IndexOutOfRangeException, MissingManifestResourceException, NotSupportedException, SecurityException, CultureNotFoundException, NotImplementedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, InvalidEnumArgumentException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
InvalidOperationException
OutOfMemoryException
IndexOutOfRangeException
MissingManifestResourceException
NotSupportedException
SecurityException
CultureNotFoundException
NotImplementedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
InvalidEnumArgumentException
-
OpenTextFieldParser
public TextFieldParser OpenTextFieldParser(java.lang.String dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, OutOfMemoryException, IndexOutOfRangeException, MissingManifestResourceException, NotSupportedException, SecurityException, CultureNotFoundException, NotImplementedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, InvalidEnumArgumentException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
InvalidOperationException
OutOfMemoryException
IndexOutOfRangeException
MissingManifestResourceException
NotSupportedException
SecurityException
CultureNotFoundException
NotImplementedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
InvalidEnumArgumentException
-
OpenTextFieldParser
public TextFieldParser OpenTextFieldParser(java.lang.String file, java.lang.String... delimiters) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, OutOfMemoryException, IndexOutOfRangeException, MissingManifestResourceException, NotSupportedException, SecurityException, CultureNotFoundException, NotImplementedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, InvalidEnumArgumentException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
InvalidOperationException
OutOfMemoryException
IndexOutOfRangeException
MissingManifestResourceException
NotSupportedException
SecurityException
CultureNotFoundException
NotImplementedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
InvalidEnumArgumentException
-
GetDirectoryInfo
public DirectoryInfo GetDirectoryInfo(java.lang.String directory) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PathTooLongException, NotSupportedException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PathTooLongException
NotSupportedException
IndexOutOfRangeException
-
GetDriveInfo
public DriveInfo GetDriveInfo(java.lang.String drive) throws java.lang.Throwable, ArgumentNullException, IndexOutOfRangeException, ArgumentException, PathTooLongException, ArgumentOutOfRangeException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, InvalidOperationException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentNullException
IndexOutOfRangeException
ArgumentException
PathTooLongException
ArgumentOutOfRangeException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
InvalidOperationException
NotSupportedException
-
GetFileInfo
public FileInfo GetFileInfo(java.lang.String file) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, CultureNotFoundException, InvalidOperationException, NotSupportedException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, PathTooLongException
-
OpenTextFileReader
public StreamReader OpenTextFileReader(java.lang.String file) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, ArgumentException, NotSupportedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NullReferenceException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SecurityException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
CultureNotFoundException
ArgumentException
NotSupportedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NullReferenceException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
SecurityException
-
OpenTextFileReader
public StreamReader OpenTextFileReader(java.lang.String file, Encoding encoding) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, CultureNotFoundException, InvalidOperationException, NotSupportedException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, PathTooLongException, SecurityException, IOException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
IndexOutOfRangeException
CultureNotFoundException
InvalidOperationException
NotSupportedException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
PathTooLongException
SecurityException
IOException
-
OpenTextFileWriter
public StreamWriter OpenTextFileWriter(java.lang.String file, boolean append) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, ArgumentException, NotSupportedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NullReferenceException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
CultureNotFoundException
ArgumentException
NotSupportedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NullReferenceException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
-
OpenTextFileWriter
public StreamWriter OpenTextFileWriter(java.lang.String file, boolean append, Encoding encoding) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, CultureNotFoundException, InvalidOperationException, NotSupportedException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, PathTooLongException, SecurityException, IOException, FormatException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
IndexOutOfRangeException
CultureNotFoundException
InvalidOperationException
NotSupportedException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
PathTooLongException
SecurityException
IOException
FormatException
-
CombinePath
public java.lang.String CombinePath(java.lang.String baseDirectory, java.lang.String relativePath) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, NotSupportedException, ArgumentOutOfRangeException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, FormatException, PathTooLongException, IndexOutOfRangeException, NullReferenceException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
CultureNotFoundException
NotSupportedException
ArgumentOutOfRangeException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
FormatException
PathTooLongException
IndexOutOfRangeException
NullReferenceException
-
GetName
public java.lang.String GetName(java.lang.String path) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
-
GetParentPath
public java.lang.String GetParentPath(java.lang.String path) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PathTooLongException, ArgumentOutOfRangeException, IndexOutOfRangeException, FormatException, NotSupportedException, InvalidOperationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PathTooLongException
ArgumentOutOfRangeException
IndexOutOfRangeException
FormatException
NotSupportedException
InvalidOperationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
-
GetTempFileName
public java.lang.String GetTempFileName() throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
CultureNotFoundException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
-
ReadAllText
public java.lang.String ReadAllText(java.lang.String file) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, PathTooLongException, CultureNotFoundException, NotSupportedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException, SecurityException, IOException, OutOfMemoryException
-
ReadAllText
public java.lang.String ReadAllText(java.lang.String file, Encoding encoding) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, PathTooLongException, CultureNotFoundException, NotSupportedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException, SecurityException, IOException, OutOfMemoryException
-
CopyDirectory
public void CopyDirectory(java.lang.String sourceDirectoryName, java.lang.String destinationDirectoryName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, InvalidEnumArgumentException, PathTooLongException, NotSupportedException, CultureNotFoundException, DirectoryNotFoundException, IOException, PlatformNotSupportedException, Win32Exception, SecurityException, OperationCanceledException, FileNotFoundException, UnauthorizedAccessException, DriveNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
InvalidEnumArgumentException
PathTooLongException
NotSupportedException
CultureNotFoundException
DirectoryNotFoundException
IOException
PlatformNotSupportedException
Win32Exception
SecurityException
OperationCanceledException
FileNotFoundException
UnauthorizedAccessException
DriveNotFoundException
-
CopyDirectory
public void CopyDirectory(java.lang.String sourceDirectoryName, java.lang.String destinationDirectoryName, boolean overwrite) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, InvalidEnumArgumentException, PathTooLongException, NotSupportedException, CultureNotFoundException, DirectoryNotFoundException, IOException, PlatformNotSupportedException, Win32Exception, SecurityException, OperationCanceledException, FileNotFoundException, UnauthorizedAccessException, DriveNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
InvalidEnumArgumentException
PathTooLongException
NotSupportedException
CultureNotFoundException
DirectoryNotFoundException
IOException
PlatformNotSupportedException
Win32Exception
SecurityException
OperationCanceledException
FileNotFoundException
UnauthorizedAccessException
DriveNotFoundException
-
CopyDirectory
public void CopyDirectory(java.lang.String sourceDirectoryName, java.lang.String destinationDirectoryName, UIOption showUI) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, ArgumentOutOfRangeException, FormatException, InvalidEnumArgumentException, PathTooLongException, NotSupportedException, DirectoryNotFoundException, IOException, PlatformNotSupportedException, Win32Exception, SecurityException, OperationCanceledException, FileNotFoundException, UnauthorizedAccessException, DriveNotFoundException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
ArgumentOutOfRangeException
FormatException
InvalidEnumArgumentException
PathTooLongException
NotSupportedException
DirectoryNotFoundException
IOException
PlatformNotSupportedException
Win32Exception
SecurityException
OperationCanceledException
FileNotFoundException
UnauthorizedAccessException
DriveNotFoundException
IndexOutOfRangeException
-
CopyDirectory
public void CopyDirectory(java.lang.String sourceDirectoryName, java.lang.String destinationDirectoryName, UIOption showUI, UICancelOption onUserCancel) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, ArgumentOutOfRangeException, FormatException, InvalidEnumArgumentException, PathTooLongException, NotSupportedException, DirectoryNotFoundException, IOException, PlatformNotSupportedException, Win32Exception, SecurityException, OperationCanceledException, FileNotFoundException, UnauthorizedAccessException, DriveNotFoundException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
ArgumentOutOfRangeException
FormatException
InvalidEnumArgumentException
PathTooLongException
NotSupportedException
DirectoryNotFoundException
IOException
PlatformNotSupportedException
Win32Exception
SecurityException
OperationCanceledException
FileNotFoundException
UnauthorizedAccessException
DriveNotFoundException
IndexOutOfRangeException
-
CopyFile
public void CopyFile(java.lang.String sourceFileName, java.lang.String destinationFileName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, InvalidEnumArgumentException, CultureNotFoundException, NotSupportedException, FileNotFoundException, IOException, PathTooLongException, DirectoryNotFoundException, UnauthorizedAccessException, DriveNotFoundException, OperationCanceledException, PlatformNotSupportedException, Win32Exception, SecurityException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
InvalidEnumArgumentException
CultureNotFoundException
NotSupportedException
FileNotFoundException
IOException
PathTooLongException
DirectoryNotFoundException
UnauthorizedAccessException
DriveNotFoundException
OperationCanceledException
PlatformNotSupportedException
Win32Exception
SecurityException
-
CopyFile
public void CopyFile(java.lang.String sourceFileName, java.lang.String destinationFileName, boolean overwrite) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, InvalidEnumArgumentException, CultureNotFoundException, NotSupportedException, FileNotFoundException, IOException, PathTooLongException, DirectoryNotFoundException, UnauthorizedAccessException, DriveNotFoundException, OperationCanceledException, PlatformNotSupportedException, Win32Exception, SecurityException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
InvalidEnumArgumentException
CultureNotFoundException
NotSupportedException
FileNotFoundException
IOException
PathTooLongException
DirectoryNotFoundException
UnauthorizedAccessException
DriveNotFoundException
OperationCanceledException
PlatformNotSupportedException
Win32Exception
SecurityException
-
CopyFile
public void CopyFile(java.lang.String sourceFileName, java.lang.String destinationFileName, UIOption showUI) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, ArgumentOutOfRangeException, FormatException, InvalidEnumArgumentException, NotSupportedException, FileNotFoundException, IOException, PathTooLongException, DirectoryNotFoundException, UnauthorizedAccessException, DriveNotFoundException, OperationCanceledException, PlatformNotSupportedException, Win32Exception, SecurityException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
ArgumentOutOfRangeException
FormatException
InvalidEnumArgumentException
NotSupportedException
FileNotFoundException
IOException
PathTooLongException
DirectoryNotFoundException
UnauthorizedAccessException
DriveNotFoundException
OperationCanceledException
PlatformNotSupportedException
Win32Exception
SecurityException
IndexOutOfRangeException
-
CopyFile
public void CopyFile(java.lang.String sourceFileName, java.lang.String destinationFileName, UIOption showUI, UICancelOption onUserCancel) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, ArgumentOutOfRangeException, FormatException, InvalidEnumArgumentException, NotSupportedException, FileNotFoundException, IOException, PathTooLongException, DirectoryNotFoundException, UnauthorizedAccessException, DriveNotFoundException, OperationCanceledException, PlatformNotSupportedException, Win32Exception, SecurityException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
ArgumentOutOfRangeException
FormatException
InvalidEnumArgumentException
NotSupportedException
FileNotFoundException
IOException
PathTooLongException
DirectoryNotFoundException
UnauthorizedAccessException
DriveNotFoundException
OperationCanceledException
PlatformNotSupportedException
Win32Exception
SecurityException
IndexOutOfRangeException
-
CreateDirectory
public void CreateDirectory(java.lang.String directory) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PathTooLongException, ArgumentOutOfRangeException, IndexOutOfRangeException, FormatException, NotSupportedException, InvalidOperationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IOException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PathTooLongException
ArgumentOutOfRangeException
IndexOutOfRangeException
FormatException
NotSupportedException
InvalidOperationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IOException
-
DeleteDirectory
public void DeleteDirectory(java.lang.String directory, DeleteDirectoryOption onDirectoryNotEmpty) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, InvalidEnumArgumentException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, NotSupportedException, PlatformNotSupportedException, Win32Exception, SecurityException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
InvalidEnumArgumentException
PathTooLongException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
NotSupportedException
PlatformNotSupportedException
Win32Exception
SecurityException
-
DeleteDirectory
public void DeleteDirectory(java.lang.String directory, UIOption showUI, RecycleOption recycle) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, ArgumentOutOfRangeException, FormatException, InvalidEnumArgumentException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, NotSupportedException, PlatformNotSupportedException, Win32Exception, SecurityException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
ArgumentOutOfRangeException
FormatException
InvalidEnumArgumentException
PathTooLongException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
NotSupportedException
PlatformNotSupportedException
Win32Exception
SecurityException
-
DeleteDirectory
public void DeleteDirectory(java.lang.String directory, UIOption showUI, RecycleOption recycle, UICancelOption onUserCancel) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, ArgumentOutOfRangeException, FormatException, InvalidEnumArgumentException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, NotSupportedException, PlatformNotSupportedException, Win32Exception, SecurityException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
ArgumentOutOfRangeException
FormatException
InvalidEnumArgumentException
PathTooLongException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
NotSupportedException
PlatformNotSupportedException
Win32Exception
SecurityException
-
DeleteFile
public void DeleteFile(java.lang.String file) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, InvalidEnumArgumentException, CultureNotFoundException, NotSupportedException, FileNotFoundException, PlatformNotSupportedException, Win32Exception, SecurityException, OperationCanceledException, DirectoryNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException, IOException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
InvalidEnumArgumentException
CultureNotFoundException
NotSupportedException
FileNotFoundException
PlatformNotSupportedException
Win32Exception
SecurityException
OperationCanceledException
DirectoryNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
IOException
-
DeleteFile
public void DeleteFile(java.lang.String file, UIOption showUI, RecycleOption recycle) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, ArgumentOutOfRangeException, FormatException, InvalidEnumArgumentException, NotSupportedException, FileNotFoundException, PlatformNotSupportedException, Win32Exception, SecurityException, OperationCanceledException, DirectoryNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException, IndexOutOfRangeException, IOException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
ArgumentOutOfRangeException
FormatException
InvalidEnumArgumentException
NotSupportedException
FileNotFoundException
PlatformNotSupportedException
Win32Exception
SecurityException
OperationCanceledException
DirectoryNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
IndexOutOfRangeException
IOException
-
DeleteFile
public void DeleteFile(java.lang.String file, UIOption showUI, RecycleOption recycle, UICancelOption onUserCancel) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, ArgumentOutOfRangeException, FormatException, InvalidEnumArgumentException, NotSupportedException, FileNotFoundException, PlatformNotSupportedException, Win32Exception, SecurityException, OperationCanceledException, DirectoryNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException, IndexOutOfRangeException, IOException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
ArgumentOutOfRangeException
FormatException
InvalidEnumArgumentException
NotSupportedException
FileNotFoundException
PlatformNotSupportedException
Win32Exception
SecurityException
OperationCanceledException
DirectoryNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
IndexOutOfRangeException
IOException
-
MoveDirectory
public void MoveDirectory(java.lang.String sourceDirectoryName, java.lang.String destinationDirectoryName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, InvalidEnumArgumentException, PathTooLongException, NotSupportedException, CultureNotFoundException, DirectoryNotFoundException, IOException, PlatformNotSupportedException, Win32Exception, SecurityException, OperationCanceledException, FileNotFoundException, UnauthorizedAccessException, DriveNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
InvalidEnumArgumentException
PathTooLongException
NotSupportedException
CultureNotFoundException
DirectoryNotFoundException
IOException
PlatformNotSupportedException
Win32Exception
SecurityException
OperationCanceledException
FileNotFoundException
UnauthorizedAccessException
DriveNotFoundException
-
MoveDirectory
public void MoveDirectory(java.lang.String sourceDirectoryName, java.lang.String destinationDirectoryName, boolean overwrite) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, InvalidEnumArgumentException, PathTooLongException, NotSupportedException, CultureNotFoundException, DirectoryNotFoundException, IOException, PlatformNotSupportedException, Win32Exception, SecurityException, OperationCanceledException, FileNotFoundException, UnauthorizedAccessException, DriveNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
InvalidEnumArgumentException
PathTooLongException
NotSupportedException
CultureNotFoundException
DirectoryNotFoundException
IOException
PlatformNotSupportedException
Win32Exception
SecurityException
OperationCanceledException
FileNotFoundException
UnauthorizedAccessException
DriveNotFoundException
-
MoveDirectory
public void MoveDirectory(java.lang.String sourceDirectoryName, java.lang.String destinationDirectoryName, UIOption showUI) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, ArgumentOutOfRangeException, FormatException, InvalidEnumArgumentException, PathTooLongException, NotSupportedException, DirectoryNotFoundException, IOException, PlatformNotSupportedException, Win32Exception, SecurityException, OperationCanceledException, FileNotFoundException, UnauthorizedAccessException, DriveNotFoundException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
ArgumentOutOfRangeException
FormatException
InvalidEnumArgumentException
PathTooLongException
NotSupportedException
DirectoryNotFoundException
IOException
PlatformNotSupportedException
Win32Exception
SecurityException
OperationCanceledException
FileNotFoundException
UnauthorizedAccessException
DriveNotFoundException
IndexOutOfRangeException
-
MoveDirectory
public void MoveDirectory(java.lang.String sourceDirectoryName, java.lang.String destinationDirectoryName, UIOption showUI, UICancelOption onUserCancel) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, ArgumentOutOfRangeException, FormatException, InvalidEnumArgumentException, PathTooLongException, NotSupportedException, DirectoryNotFoundException, IOException, PlatformNotSupportedException, Win32Exception, SecurityException, OperationCanceledException, FileNotFoundException, UnauthorizedAccessException, DriveNotFoundException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
ArgumentOutOfRangeException
FormatException
InvalidEnumArgumentException
PathTooLongException
NotSupportedException
DirectoryNotFoundException
IOException
PlatformNotSupportedException
Win32Exception
SecurityException
OperationCanceledException
FileNotFoundException
UnauthorizedAccessException
DriveNotFoundException
IndexOutOfRangeException
-
MoveFile
public void MoveFile(java.lang.String sourceFileName, java.lang.String destinationFileName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, InvalidEnumArgumentException, CultureNotFoundException, NotSupportedException, FileNotFoundException, IOException, PathTooLongException, DirectoryNotFoundException, UnauthorizedAccessException, DriveNotFoundException, OperationCanceledException, PlatformNotSupportedException, Win32Exception, SecurityException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
InvalidEnumArgumentException
CultureNotFoundException
NotSupportedException
FileNotFoundException
IOException
PathTooLongException
DirectoryNotFoundException
UnauthorizedAccessException
DriveNotFoundException
OperationCanceledException
PlatformNotSupportedException
Win32Exception
SecurityException
-
MoveFile
public void MoveFile(java.lang.String sourceFileName, java.lang.String destinationFileName, boolean overwrite) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, InvalidEnumArgumentException, CultureNotFoundException, NotSupportedException, FileNotFoundException, IOException, PathTooLongException, DirectoryNotFoundException, UnauthorizedAccessException, DriveNotFoundException, OperationCanceledException, PlatformNotSupportedException, Win32Exception, SecurityException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
InvalidEnumArgumentException
CultureNotFoundException
NotSupportedException
FileNotFoundException
IOException
PathTooLongException
DirectoryNotFoundException
UnauthorizedAccessException
DriveNotFoundException
OperationCanceledException
PlatformNotSupportedException
Win32Exception
SecurityException
-
MoveFile
public void MoveFile(java.lang.String sourceFileName, java.lang.String destinationFileName, UIOption showUI) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, ArgumentOutOfRangeException, FormatException, InvalidEnumArgumentException, NotSupportedException, FileNotFoundException, IOException, PathTooLongException, DirectoryNotFoundException, UnauthorizedAccessException, DriveNotFoundException, OperationCanceledException, PlatformNotSupportedException, Win32Exception, SecurityException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
ArgumentOutOfRangeException
FormatException
InvalidEnumArgumentException
NotSupportedException
FileNotFoundException
IOException
PathTooLongException
DirectoryNotFoundException
UnauthorizedAccessException
DriveNotFoundException
OperationCanceledException
PlatformNotSupportedException
Win32Exception
SecurityException
IndexOutOfRangeException
-
MoveFile
public void MoveFile(java.lang.String sourceFileName, java.lang.String destinationFileName, UIOption showUI, UICancelOption onUserCancel) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, ArgumentOutOfRangeException, FormatException, InvalidEnumArgumentException, NotSupportedException, FileNotFoundException, IOException, PathTooLongException, DirectoryNotFoundException, UnauthorizedAccessException, DriveNotFoundException, OperationCanceledException, PlatformNotSupportedException, Win32Exception, SecurityException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
ArgumentOutOfRangeException
FormatException
InvalidEnumArgumentException
NotSupportedException
FileNotFoundException
IOException
PathTooLongException
DirectoryNotFoundException
UnauthorizedAccessException
DriveNotFoundException
OperationCanceledException
PlatformNotSupportedException
Win32Exception
SecurityException
IndexOutOfRangeException
-
RenameDirectory
public void RenameDirectory(java.lang.String directory, java.lang.String newName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PathTooLongException, ArgumentOutOfRangeException, IndexOutOfRangeException, FormatException, NotSupportedException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, IOException, DirectoryNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PathTooLongException
ArgumentOutOfRangeException
IndexOutOfRangeException
FormatException
NotSupportedException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
IOException
DirectoryNotFoundException
-
RenameFile
public void RenameFile(java.lang.String file, java.lang.String newName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, CultureNotFoundException, InvalidOperationException, NotSupportedException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, PathTooLongException, FileNotFoundException, IOException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
IndexOutOfRangeException
CultureNotFoundException
InvalidOperationException
NotSupportedException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
PathTooLongException
FileNotFoundException
IOException
-
WriteAllBytes
public void WriteAllBytes(java.lang.String file, byte[] data, boolean append) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotSupportedException, ArgumentOutOfRangeException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, PathTooLongException, IndexOutOfRangeException, NullReferenceException, SecurityException, IOException, WaitHandleCannotBeOpenedException, EndOfStreamException, ThreadAbortException, TaskSchedulerException, TaskCanceledException, AggregateException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotSupportedException
ArgumentOutOfRangeException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
PathTooLongException
IndexOutOfRangeException
NullReferenceException
SecurityException
IOException
WaitHandleCannotBeOpenedException
EndOfStreamException
ThreadAbortException
TaskSchedulerException
TaskCanceledException
AggregateException
SemaphoreFullException
-
WriteAllBytes
public void WriteAllBytes(java.lang.String dupParam0, JCORefOut dupParam1, boolean dupParam2) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotSupportedException, ArgumentOutOfRangeException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, PathTooLongException, IndexOutOfRangeException, NullReferenceException, SecurityException, IOException, WaitHandleCannotBeOpenedException, EndOfStreamException, ThreadAbortException, TaskSchedulerException, TaskCanceledException, AggregateException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotSupportedException
ArgumentOutOfRangeException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
PathTooLongException
IndexOutOfRangeException
NullReferenceException
SecurityException
IOException
WaitHandleCannotBeOpenedException
EndOfStreamException
ThreadAbortException
TaskSchedulerException
TaskCanceledException
AggregateException
SemaphoreFullException
-
WriteAllText
public void WriteAllText(java.lang.String file, java.lang.String text, boolean append) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, IndexOutOfRangeException, CultureNotFoundException, InvalidOperationException, NotSupportedException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, PathTooLongException, NullReferenceException, SecurityException, IOException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
IndexOutOfRangeException
CultureNotFoundException
InvalidOperationException
NotSupportedException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
PathTooLongException
NullReferenceException
SecurityException
IOException
-
WriteAllText
public void WriteAllText(java.lang.String file, java.lang.String text, 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
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotSupportedException
ArgumentOutOfRangeException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
PathTooLongException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
NullReferenceException
SecurityException
-
getSpecialDirectories
public SpecialDirectoriesProxy getSpecialDirectories() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getCurrentDirectory
public java.lang.String getCurrentDirectory() throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotSupportedException, ArgumentOutOfRangeException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, IndexOutOfRangeException, MissingManifestResourceException, InvalidOperationException, NullReferenceException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotSupportedException
ArgumentOutOfRangeException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
IndexOutOfRangeException
MissingManifestResourceException
InvalidOperationException
NullReferenceException
-
setCurrentDirectory
public void setCurrentDirectory(java.lang.String CurrentDirectory) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PathTooLongException, FormatException, ArgumentOutOfRangeException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PathTooLongException
FormatException
ArgumentOutOfRangeException
IndexOutOfRangeException
-
-