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.Forms, Version=8.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.Forms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.String
assemblyShortName
Assembly name: Microsoft.VisualBasic.Formsstatic 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.Forms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: Microsoft.VisualBasic.Forms- 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, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException
-
FileExists
public boolean FileExists(java.lang.String file) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, OutOfMemoryException, ExternalException, ArgumentOutOfRangeException, InvalidOperationException, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
ArgumentNullException
CultureNotFoundException
PlatformNotSupportedException
IndexOutOfRangeException
OutOfMemoryException
ExternalException
ArgumentOutOfRangeException
InvalidOperationException
MissingMethodException
TargetInvocationException
-
ReadAllBytes
public byte[] ReadAllBytes(java.lang.String file) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, PlatformNotSupportedException, FormatException, OutOfMemoryException, SerializationException, CultureNotFoundException, IOException, ArrayTypeMismatchException, WaitHandleCannotBeOpenedException, AbandonedMutexException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
InvalidOperationException
PlatformNotSupportedException
FormatException
OutOfMemoryException
SerializationException
CultureNotFoundException
IOException
ArrayTypeMismatchException
WaitHandleCannotBeOpenedException
AbandonedMutexException
-
OpenTextFieldParser
public TextFieldParser OpenTextFieldParser(java.lang.String file, int... fieldWidths) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, IndexOutOfRangeException, PlatformNotSupportedException, RegexParseException, RankException, ArrayTypeMismatchException, OutOfMemoryException, ExternalException, CultureNotFoundException, FileNotFoundException, InvalidEnumArgumentException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
InvalidOperationException
IndexOutOfRangeException
PlatformNotSupportedException
RegexParseException
RankException
ArrayTypeMismatchException
OutOfMemoryException
ExternalException
CultureNotFoundException
FileNotFoundException
InvalidEnumArgumentException
-
OpenTextFieldParser
public TextFieldParser OpenTextFieldParser(java.lang.String dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, IndexOutOfRangeException, PlatformNotSupportedException, RegexParseException, RankException, ArrayTypeMismatchException, OutOfMemoryException, ExternalException, CultureNotFoundException, FileNotFoundException, InvalidEnumArgumentException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
InvalidOperationException
IndexOutOfRangeException
PlatformNotSupportedException
RegexParseException
RankException
ArrayTypeMismatchException
OutOfMemoryException
ExternalException
CultureNotFoundException
FileNotFoundException
InvalidEnumArgumentException
-
OpenTextFieldParser
public TextFieldParser OpenTextFieldParser(java.lang.String file, java.lang.String... delimiters) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, IndexOutOfRangeException, PlatformNotSupportedException, RegexParseException, RankException, ArrayTypeMismatchException, OutOfMemoryException, ExternalException, CultureNotFoundException, FileNotFoundException, InvalidEnumArgumentException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
InvalidOperationException
IndexOutOfRangeException
PlatformNotSupportedException
RegexParseException
RankException
ArrayTypeMismatchException
OutOfMemoryException
ExternalException
CultureNotFoundException
FileNotFoundException
InvalidEnumArgumentException
-
OpenTextFieldParser
public TextFieldParser OpenTextFieldParser(java.lang.String file) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, IndexOutOfRangeException, PlatformNotSupportedException, RegexParseException, RankException, ArrayTypeMismatchException, OutOfMemoryException, ExternalException, CultureNotFoundException, FileNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
InvalidOperationException
IndexOutOfRangeException
PlatformNotSupportedException
RegexParseException
RankException
ArrayTypeMismatchException
OutOfMemoryException
ExternalException
CultureNotFoundException
FileNotFoundException
-
GetDirectoryInfo
public DirectoryInfo GetDirectoryInfo(java.lang.String directory) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException
-
GetDriveInfo
public DriveInfo GetDriveInfo(java.lang.String drive) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, OutOfMemoryException, PlatformNotSupportedException, InvalidOperationException, IndexOutOfRangeException, ArgumentOutOfRangeException, CultureNotFoundException
-
GetFileInfo
public FileInfo GetFileInfo(java.lang.String file) throws java.lang.Throwable, PlatformNotSupportedException, OutOfMemoryException, ExternalException, ArgumentNullException, InvalidOperationException, CultureNotFoundException, ArgumentException, FormatException, ArgumentOutOfRangeException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
-
OpenTextFileReader
public StreamReader OpenTextFileReader(java.lang.String file, Encoding encoding) throws java.lang.Throwable, PlatformNotSupportedException, OutOfMemoryException, ExternalException, ArgumentNullException, InvalidOperationException, CultureNotFoundException, ArgumentException, FormatException, ArgumentOutOfRangeException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
-
OpenTextFileReader
public StreamReader OpenTextFileReader(java.lang.String file) throws java.lang.Throwable, ArgumentNullException, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException
-
OpenTextFileWriter
public StreamWriter OpenTextFileWriter(java.lang.String file, boolean append, Encoding encoding) throws java.lang.Throwable, PlatformNotSupportedException, OutOfMemoryException, ExternalException, ArgumentNullException, InvalidOperationException, CultureNotFoundException, ArgumentException, FormatException, ArgumentOutOfRangeException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
-
OpenTextFileWriter
public StreamWriter OpenTextFileWriter(java.lang.String file, boolean append) throws java.lang.Throwable, ArgumentNullException, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException
-
CombinePath
public java.lang.String CombinePath(java.lang.String baseDirectory, java.lang.String relativePath) throws java.lang.Throwable, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentException, OutOfMemoryException, ExternalException, ArgumentNullException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, ObjectDisposedException
-
GetName
public java.lang.String GetName(java.lang.String path) throws java.lang.Throwable, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException
- Throws:
java.lang.Throwable
IndexOutOfRangeException
PlatformNotSupportedException
ArgumentOutOfRangeException
InvalidOperationException
-
GetParentPath
public java.lang.String GetParentPath(java.lang.String path) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException
-
GetTempFileName
public java.lang.String GetTempFileName() throws java.lang.Throwable, NotSupportedException, ArgumentException, InvalidOperationException, ArgumentNullException, PlatformNotSupportedException, FormatException, OutOfMemoryException, CultureNotFoundException, ArgumentOutOfRangeException, SerializationException, IOException
-
ReadAllText
public java.lang.String ReadAllText(java.lang.String file, Encoding encoding) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, PlatformNotSupportedException, ArrayTypeMismatchException, OutOfMemoryException
-
ReadAllText
public java.lang.String ReadAllText(java.lang.String file) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, OutOfMemoryException
-
CopyDirectory
public void CopyDirectory(java.lang.String sourceDirectoryName, java.lang.String destinationDirectoryName, boolean overwrite) throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, InvalidEnumArgumentException, NotSupportedException, CultureNotFoundException, IndexOutOfRangeException, DirectoryNotFoundException, IOException, OperationCanceledException, FileNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
FormatException
InvalidEnumArgumentException
NotSupportedException
CultureNotFoundException
IndexOutOfRangeException
DirectoryNotFoundException
IOException
OperationCanceledException
FileNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
-
CopyDirectory
public void CopyDirectory(java.lang.String sourceDirectoryName, java.lang.String destinationDirectoryName, UIOption showUI, UICancelOption onUserCancel) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, FormatException, InvalidEnumArgumentException, CultureNotFoundException, RankException, ArrayTypeMismatchException, DirectoryNotFoundException, IOException, NotSupportedException, OperationCanceledException, FileNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException
- Throws:
java.lang.Throwable
ArgumentException
InvalidOperationException
ArgumentNullException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
FormatException
InvalidEnumArgumentException
CultureNotFoundException
RankException
ArrayTypeMismatchException
DirectoryNotFoundException
IOException
NotSupportedException
OperationCanceledException
FileNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
-
CopyDirectory
public void CopyDirectory(java.lang.String sourceDirectoryName, java.lang.String destinationDirectoryName, UIOption showUI) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, FormatException, InvalidEnumArgumentException, CultureNotFoundException, RankException, ArrayTypeMismatchException, DirectoryNotFoundException, IOException, NotSupportedException, OperationCanceledException, FileNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException
- Throws:
java.lang.Throwable
ArgumentException
InvalidOperationException
ArgumentNullException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
FormatException
InvalidEnumArgumentException
CultureNotFoundException
RankException
ArrayTypeMismatchException
DirectoryNotFoundException
IOException
NotSupportedException
OperationCanceledException
FileNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
-
CopyDirectory
public void CopyDirectory(java.lang.String sourceDirectoryName, java.lang.String destinationDirectoryName) throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, InvalidEnumArgumentException, NotSupportedException, CultureNotFoundException, IndexOutOfRangeException, DirectoryNotFoundException, IOException, OperationCanceledException, FileNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
FormatException
InvalidEnumArgumentException
NotSupportedException
CultureNotFoundException
IndexOutOfRangeException
DirectoryNotFoundException
IOException
OperationCanceledException
FileNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
-
CopyFile
public void CopyFile(java.lang.String sourceFileName, java.lang.String destinationFileName, boolean overwrite) throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, InvalidEnumArgumentException, CultureNotFoundException, FileNotFoundException, IOException, NotSupportedException, OperationCanceledException, DirectoryNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
FormatException
InvalidEnumArgumentException
CultureNotFoundException
FileNotFoundException
IOException
NotSupportedException
OperationCanceledException
DirectoryNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
MissingMethodException
TargetInvocationException
-
CopyFile
public void CopyFile(java.lang.String sourceFileName, java.lang.String destinationFileName, UIOption showUI, UICancelOption onUserCancel) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, FormatException, InvalidEnumArgumentException, CultureNotFoundException, FileNotFoundException, IOException, NotSupportedException, OperationCanceledException, DirectoryNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentException
InvalidOperationException
ArgumentNullException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
FormatException
InvalidEnumArgumentException
CultureNotFoundException
FileNotFoundException
IOException
NotSupportedException
OperationCanceledException
DirectoryNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
MissingMethodException
TargetInvocationException
-
CopyFile
public void CopyFile(java.lang.String sourceFileName, java.lang.String destinationFileName, UIOption showUI) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, FormatException, InvalidEnumArgumentException, CultureNotFoundException, FileNotFoundException, IOException, NotSupportedException, OperationCanceledException, DirectoryNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentException
InvalidOperationException
ArgumentNullException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
FormatException
InvalidEnumArgumentException
CultureNotFoundException
FileNotFoundException
IOException
NotSupportedException
OperationCanceledException
DirectoryNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
MissingMethodException
TargetInvocationException
-
CopyFile
public void CopyFile(java.lang.String sourceFileName, java.lang.String destinationFileName) throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, InvalidEnumArgumentException, CultureNotFoundException, FileNotFoundException, IOException, NotSupportedException, OperationCanceledException, DirectoryNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
FormatException
InvalidEnumArgumentException
CultureNotFoundException
FileNotFoundException
IOException
NotSupportedException
OperationCanceledException
DirectoryNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
MissingMethodException
TargetInvocationException
-
CreateDirectory
public void CreateDirectory(java.lang.String directory) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, MissingMethodException, TargetInvocationException, IOException
-
DeleteDirectory
public void DeleteDirectory(java.lang.String directory, DeleteDirectoryOption onDirectoryNotEmpty) throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, InvalidEnumArgumentException, NotSupportedException, RankException, ArrayTypeMismatchException, CultureNotFoundException, DirectoryNotFoundException, IOException, OperationCanceledException, FileNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
FormatException
InvalidEnumArgumentException
NotSupportedException
RankException
ArrayTypeMismatchException
CultureNotFoundException
DirectoryNotFoundException
IOException
OperationCanceledException
FileNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
-
DeleteDirectory
public void DeleteDirectory(java.lang.String directory, UIOption showUI, RecycleOption recycle, UICancelOption onUserCancel) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, FormatException, InvalidEnumArgumentException, CultureNotFoundException, DirectoryNotFoundException, IOException, NotSupportedException, OperationCanceledException, FileNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException
- Throws:
java.lang.Throwable
ArgumentException
InvalidOperationException
ArgumentNullException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
FormatException
InvalidEnumArgumentException
CultureNotFoundException
DirectoryNotFoundException
IOException
NotSupportedException
OperationCanceledException
FileNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
-
DeleteDirectory
public void DeleteDirectory(java.lang.String directory, UIOption showUI, RecycleOption recycle) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, FormatException, InvalidEnumArgumentException, CultureNotFoundException, DirectoryNotFoundException, IOException, NotSupportedException, OperationCanceledException, FileNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException
- Throws:
java.lang.Throwable
ArgumentException
InvalidOperationException
ArgumentNullException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
FormatException
InvalidEnumArgumentException
CultureNotFoundException
DirectoryNotFoundException
IOException
NotSupportedException
OperationCanceledException
FileNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
-
DeleteFile
public void DeleteFile(java.lang.String file, UIOption showUI, RecycleOption recycle, UICancelOption onUserCancel) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, FormatException, InvalidEnumArgumentException, CultureNotFoundException, FileNotFoundException, NotSupportedException, OperationCanceledException, DirectoryNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException, IOException
- Throws:
java.lang.Throwable
ArgumentException
InvalidOperationException
ArgumentNullException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
FormatException
InvalidEnumArgumentException
CultureNotFoundException
FileNotFoundException
NotSupportedException
OperationCanceledException
DirectoryNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
IOException
-
DeleteFile
public void DeleteFile(java.lang.String file, UIOption showUI, RecycleOption recycle) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, FormatException, InvalidEnumArgumentException, CultureNotFoundException, FileNotFoundException, NotSupportedException, OperationCanceledException, DirectoryNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException, IOException
- Throws:
java.lang.Throwable
ArgumentException
InvalidOperationException
ArgumentNullException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
FormatException
InvalidEnumArgumentException
CultureNotFoundException
FileNotFoundException
NotSupportedException
OperationCanceledException
DirectoryNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
IOException
-
DeleteFile
public void DeleteFile(java.lang.String file) throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, InvalidEnumArgumentException, CultureNotFoundException, FileNotFoundException, NotSupportedException, OperationCanceledException, DirectoryNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException, IOException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
FormatException
InvalidEnumArgumentException
CultureNotFoundException
FileNotFoundException
NotSupportedException
OperationCanceledException
DirectoryNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
IOException
-
MoveDirectory
public void MoveDirectory(java.lang.String sourceDirectoryName, java.lang.String destinationDirectoryName, boolean overwrite) throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, InvalidEnumArgumentException, NotSupportedException, CultureNotFoundException, IndexOutOfRangeException, DirectoryNotFoundException, IOException, OperationCanceledException, FileNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
FormatException
InvalidEnumArgumentException
NotSupportedException
CultureNotFoundException
IndexOutOfRangeException
DirectoryNotFoundException
IOException
OperationCanceledException
FileNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
-
MoveDirectory
public void MoveDirectory(java.lang.String sourceDirectoryName, java.lang.String destinationDirectoryName, UIOption showUI, UICancelOption onUserCancel) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, FormatException, InvalidEnumArgumentException, CultureNotFoundException, RankException, ArrayTypeMismatchException, DirectoryNotFoundException, IOException, NotSupportedException, OperationCanceledException, FileNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException
- Throws:
java.lang.Throwable
ArgumentException
InvalidOperationException
ArgumentNullException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
FormatException
InvalidEnumArgumentException
CultureNotFoundException
RankException
ArrayTypeMismatchException
DirectoryNotFoundException
IOException
NotSupportedException
OperationCanceledException
FileNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
-
MoveDirectory
public void MoveDirectory(java.lang.String sourceDirectoryName, java.lang.String destinationDirectoryName, UIOption showUI) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, FormatException, InvalidEnumArgumentException, CultureNotFoundException, RankException, ArrayTypeMismatchException, DirectoryNotFoundException, IOException, NotSupportedException, OperationCanceledException, FileNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException
- Throws:
java.lang.Throwable
ArgumentException
InvalidOperationException
ArgumentNullException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
FormatException
InvalidEnumArgumentException
CultureNotFoundException
RankException
ArrayTypeMismatchException
DirectoryNotFoundException
IOException
NotSupportedException
OperationCanceledException
FileNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
-
MoveDirectory
public void MoveDirectory(java.lang.String sourceDirectoryName, java.lang.String destinationDirectoryName) throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, InvalidEnumArgumentException, NotSupportedException, CultureNotFoundException, IndexOutOfRangeException, DirectoryNotFoundException, IOException, OperationCanceledException, FileNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
FormatException
InvalidEnumArgumentException
NotSupportedException
CultureNotFoundException
IndexOutOfRangeException
DirectoryNotFoundException
IOException
OperationCanceledException
FileNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
-
MoveFile
public void MoveFile(java.lang.String sourceFileName, java.lang.String destinationFileName, boolean overwrite) throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, InvalidEnumArgumentException, CultureNotFoundException, FileNotFoundException, IOException, NotSupportedException, OperationCanceledException, DirectoryNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
FormatException
InvalidEnumArgumentException
CultureNotFoundException
FileNotFoundException
IOException
NotSupportedException
OperationCanceledException
DirectoryNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
MissingMethodException
TargetInvocationException
-
MoveFile
public void MoveFile(java.lang.String sourceFileName, java.lang.String destinationFileName, UIOption showUI, UICancelOption onUserCancel) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, FormatException, InvalidEnumArgumentException, CultureNotFoundException, FileNotFoundException, IOException, NotSupportedException, OperationCanceledException, DirectoryNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentException
InvalidOperationException
ArgumentNullException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
FormatException
InvalidEnumArgumentException
CultureNotFoundException
FileNotFoundException
IOException
NotSupportedException
OperationCanceledException
DirectoryNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
MissingMethodException
TargetInvocationException
-
MoveFile
public void MoveFile(java.lang.String sourceFileName, java.lang.String destinationFileName, UIOption showUI) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, FormatException, InvalidEnumArgumentException, CultureNotFoundException, FileNotFoundException, IOException, NotSupportedException, OperationCanceledException, DirectoryNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentException
InvalidOperationException
ArgumentNullException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
FormatException
InvalidEnumArgumentException
CultureNotFoundException
FileNotFoundException
IOException
NotSupportedException
OperationCanceledException
DirectoryNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
MissingMethodException
TargetInvocationException
-
MoveFile
public void MoveFile(java.lang.String sourceFileName, java.lang.String destinationFileName) throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, InvalidEnumArgumentException, CultureNotFoundException, FileNotFoundException, IOException, NotSupportedException, OperationCanceledException, DirectoryNotFoundException, UnauthorizedAccessException, PathTooLongException, DriveNotFoundException, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
FormatException
InvalidEnumArgumentException
CultureNotFoundException
FileNotFoundException
IOException
NotSupportedException
OperationCanceledException
DirectoryNotFoundException
UnauthorizedAccessException
PathTooLongException
DriveNotFoundException
MissingMethodException
TargetInvocationException
-
RenameDirectory
public void RenameDirectory(java.lang.String directory, java.lang.String newName) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, IOException, DirectoryNotFoundException
-
RenameFile
public void RenameFile(java.lang.String file, java.lang.String newName) throws java.lang.Throwable, PlatformNotSupportedException, OutOfMemoryException, ExternalException, ArgumentNullException, InvalidOperationException, CultureNotFoundException, ArgumentException, FormatException, ArgumentOutOfRangeException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException, FileNotFoundException, IOException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
OutOfMemoryException
ExternalException
ArgumentNullException
InvalidOperationException
CultureNotFoundException
ArgumentException
FormatException
ArgumentOutOfRangeException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
FileNotFoundException
IOException
-
WriteAllBytes
public void WriteAllBytes(java.lang.String file, byte[] data, boolean append) throws java.lang.Throwable, PlatformNotSupportedException, OutOfMemoryException, ExternalException, ArgumentNullException, ArgumentOutOfRangeException, InvalidOperationException, ArgumentException, CultureNotFoundException, ObjectDisposedException, FormatException, SerializationException
-
WriteAllBytes
public void WriteAllBytes(java.lang.String dupParam0, JCORefOut dupParam1, boolean dupParam2) throws java.lang.Throwable, PlatformNotSupportedException, OutOfMemoryException, ExternalException, ArgumentNullException, ArgumentOutOfRangeException, InvalidOperationException, ArgumentException, CultureNotFoundException, ObjectDisposedException, FormatException, SerializationException
-
WriteAllText
public void WriteAllText(java.lang.String file, java.lang.String text, boolean append, Encoding encoding) throws java.lang.Throwable, PlatformNotSupportedException, OutOfMemoryException, ExternalException, ArgumentNullException, ArgumentOutOfRangeException, InvalidOperationException, ArgumentException, CultureNotFoundException, ObjectDisposedException, FormatException, MissingMethodException, TargetInvocationException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
OutOfMemoryException
ExternalException
ArgumentNullException
ArgumentOutOfRangeException
InvalidOperationException
ArgumentException
CultureNotFoundException
ObjectDisposedException
FormatException
MissingMethodException
TargetInvocationException
ArrayTypeMismatchException
-
WriteAllText
public void WriteAllText(java.lang.String file, java.lang.String text, boolean append) throws java.lang.Throwable, PlatformNotSupportedException, OutOfMemoryException, ExternalException, ArgumentNullException, InvalidOperationException, CultureNotFoundException, ArgumentException, FormatException, ArgumentOutOfRangeException, ArrayTypeMismatchException, ObjectDisposedException
-
getSpecialDirectories
public SpecialDirectoriesProxy getSpecialDirectories() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getCurrentDirectory
public java.lang.String getCurrentDirectory() throws java.lang.Throwable, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, CultureNotFoundException, ArgumentNullException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
-
setCurrentDirectory
public void setCurrentDirectory(java.lang.String CurrentDirectory) throws java.lang.Throwable, ArgumentNullException, ArgumentException, IndexOutOfRangeException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException
-
-