Package microsoft.visualbasic
Class FileSystem
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- microsoft.visualbasic.FileSystem
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class FileSystem extends NetObject
The base .NET class managing Microsoft.VisualBasic.FileSystem, Microsoft.VisualBasic, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/Microsoft.VisualBasic.FileSystem
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.FileSystemstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description FileSystem()
FileSystem(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FileSystem
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoFileSystem
, a cast assert is made to check if types are compatible.static void
ChDir(java.lang.String Path)
static void
ChDrive(char Drive)
static void
ChDrive(java.lang.String Drive)
static java.lang.String
CurDir()
static java.lang.String
CurDir(char Drive)
static java.lang.String
Dir()
static java.lang.String
Dir(java.lang.String PathName, FileAttribute Attributes)
static boolean
EOF(int FileNumber)
static OpenMode
FileAttr(int FileNumber)
static void
FileClose(int... FileNumbers)
static void
FileClose(JCORefOut dupParam0)
static void
FileCopy(java.lang.String Source, java.lang.String Destination)
static DateTime
FileDateTime(java.lang.String PathName)
static void
FileGetObject(int FileNumber, JCORefOut<NetObject> Value, long RecordNumber)
static long
FileLen(java.lang.String PathName)
static void
FileOpen(int FileNumber, java.lang.String FileName, OpenMode Mode, OpenAccess Access, OpenShare Share, int RecordLength)
static void
FilePut(int FileNumber, boolean Value, long RecordNumber)
static void
FilePut(int FileNumber, byte Value, long RecordNumber)
static void
FilePut(int FileNumber, char Value, long RecordNumber)
static void
FilePut(int FileNumber, double Value, long RecordNumber)
static void
FilePut(int FileNumber, int Value, long RecordNumber)
static void
FilePut(int FileNumber, long Value, long RecordNumber)
static void
FilePut(int FileNumber, short Value, long RecordNumber)
static void
FilePut(int FileNumber, java.lang.String Value, long RecordNumber, boolean StringIsFixedLength)
static void
FilePut(int FileNumber, Array Value, long RecordNumber, boolean ArrayIsDynamic, boolean StringIsFixedLength)
static void
FilePut(int FileNumber, DateTime Value, long RecordNumber)
static void
FilePut(int FileNumber, Decimal Value, long RecordNumber)
static void
FilePut(int FileNumber, Single Value, long RecordNumber)
static void
FilePut(int FileNumber, ValueType Value, long RecordNumber)
static void
FilePut(NetObject FileNumber, NetObject Value, NetObject RecordNumber)
static void
FilePutObject(int FileNumber, NetObject Value, long RecordNumber)
static void
FileWidth(int FileNumber, int RecordWidth)
static int
FreeFile()
static FileAttribute
GetAttr(java.lang.String PathName)
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 Typestatic java.lang.String
InputString(int FileNumber, int CharCount)
static void
Kill(java.lang.String PathName)
static java.lang.String
LineInput(int FileNumber)
static long
Loc(int FileNumber)
static void
Lock(int FileNumber)
static void
Lock(int FileNumber, long Record)
static void
Lock(int FileNumber, long FromRecord, long ToRecord)
static long
LOF(int FileNumber)
static void
MkDir(java.lang.String Path)
static void
Print(int FileNumber, NetObject... Output)
static void
PrintLine(int FileNumber, NetObject... Output)
static void
Rename(java.lang.String OldPath, java.lang.String NewPath)
static void
Reset()
static void
RmDir(java.lang.String Path)
static long
Seek(int FileNumber)
static void
Seek(int FileNumber, long Position)
static void
SetAttr(java.lang.String PathName, FileAttribute Attributes)
void
setJCOInstance(JCObject instance)
static SpcInfo
SPC(short Count)
static TabInfo
TAB()
static TabInfo
TAB(short Column)
static void
Unlock(int FileNumber)
static void
Unlock(int FileNumber, long Record)
static void
Unlock(int FileNumber, long FromRecord, long ToRecord)
static void
Write(int FileNumber, NetObject... Output)
static void
WriteLine(int FileNumber, NetObject... Output)
-
-
-
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.FileSystem- 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 FileSystem cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoFileSystem
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
FileSystem
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
EOF
public static boolean EOF(int FileNumber) throws java.lang.Throwable, InvalidOperationException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException, ArgumentOutOfRangeException
-
FreeFile
public static int FreeFile() throws java.lang.Throwable, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, FormatException, ArgumentException, NotSupportedException, IndexOutOfRangeException, CultureNotFoundException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException
- Throws:
java.lang.Throwable
InvalidOperationException
ArgumentOutOfRangeException
ArgumentNullException
FormatException
ArgumentException
NotSupportedException
IndexOutOfRangeException
CultureNotFoundException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
SecurityException
-
FileLen
public static long FileLen(java.lang.String PathName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PathTooLongException, ArgumentOutOfRangeException, IndexOutOfRangeException, FormatException, NotSupportedException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FileNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PathTooLongException
ArgumentOutOfRangeException
IndexOutOfRangeException
FormatException
NotSupportedException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FileNotFoundException
-
Loc
public static long Loc(int FileNumber) throws java.lang.Throwable, InvalidOperationException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException, ArgumentOutOfRangeException
-
LOF
public static long LOF(int FileNumber) throws java.lang.Throwable, InvalidOperationException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException, ArgumentOutOfRangeException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OutOfMemoryException, OperationCanceledException
- Throws:
java.lang.Throwable
InvalidOperationException
IndexOutOfRangeException
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
SecurityException
ArgumentOutOfRangeException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OutOfMemoryException
OperationCanceledException
-
Seek
public static long Seek(int FileNumber) throws java.lang.Throwable, InvalidOperationException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException, ArgumentOutOfRangeException
-
GetAttr
public static FileAttribute GetAttr(java.lang.String PathName) throws java.lang.Throwable, IndexOutOfRangeException, NotSupportedException, ArgumentOutOfRangeException, ArgumentNullException, FormatException, CultureNotFoundException, ArgumentException, InvalidOperationException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, PathTooLongException, FileNotFoundException
- Throws:
java.lang.Throwable
IndexOutOfRangeException
NotSupportedException
ArgumentOutOfRangeException
ArgumentNullException
FormatException
CultureNotFoundException
ArgumentException
InvalidOperationException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
PathTooLongException
FileNotFoundException
-
FileAttr
public static OpenMode FileAttr(int FileNumber) throws java.lang.Throwable, InvalidOperationException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException, ArgumentOutOfRangeException
-
SPC
public static SpcInfo SPC(short Count) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
TAB
public static TabInfo TAB() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
TAB
public static TabInfo TAB(short Column) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
FileDateTime
public static DateTime FileDateTime(java.lang.String PathName) throws java.lang.Throwable, NotSupportedException, ArgumentOutOfRangeException, OutOfMemoryException, IndexOutOfRangeException, ArgumentException, InvalidOperationException, ArgumentNullException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, PathTooLongException, OverflowException, FileNotFoundException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentOutOfRangeException
OutOfMemoryException
IndexOutOfRangeException
ArgumentException
InvalidOperationException
ArgumentNullException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
PathTooLongException
OverflowException
FileNotFoundException
-
CurDir
public static java.lang.String CurDir() throws java.lang.Throwable, ArgumentNullException, ArgumentException, ObjectDisposedException, OutOfMemoryException, NotSupportedException, ArgumentOutOfRangeException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
ObjectDisposedException
OutOfMemoryException
NotSupportedException
ArgumentOutOfRangeException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
IndexOutOfRangeException
-
CurDir
public static java.lang.String CurDir(char Drive) throws java.lang.Throwable, ArgumentNullException, ArgumentException, CultureNotFoundException, NotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, OutOfMemoryException, InvalidOperationException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
CultureNotFoundException
NotSupportedException
IndexOutOfRangeException
ArgumentOutOfRangeException
OutOfMemoryException
InvalidOperationException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
PathTooLongException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
-
Dir
public static java.lang.String Dir() throws java.lang.Throwable, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, FormatException, ArgumentException, NotSupportedException, IndexOutOfRangeException, CultureNotFoundException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
InvalidOperationException
ArgumentOutOfRangeException
ArgumentNullException
FormatException
ArgumentException
NotSupportedException
IndexOutOfRangeException
CultureNotFoundException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
SecurityException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
-
Dir
public static java.lang.String Dir(java.lang.String PathName, FileAttribute Attributes) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, FormatException, PathTooLongException, CultureNotFoundException, IndexOutOfRangeException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, InvalidOperationException, NullReferenceException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
FormatException
PathTooLongException
CultureNotFoundException
IndexOutOfRangeException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
InvalidOperationException
NullReferenceException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
SecurityException
-
InputString
public static java.lang.String InputString(int FileNumber, int CharCount) throws java.lang.Throwable, NotSupportedException, ArgumentOutOfRangeException, OutOfMemoryException, IndexOutOfRangeException, ArgumentException, InvalidOperationException, ArgumentNullException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, SecurityException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, NullReferenceException, OverflowException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentOutOfRangeException
OutOfMemoryException
IndexOutOfRangeException
ArgumentException
InvalidOperationException
ArgumentNullException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
SecurityException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
NullReferenceException
OverflowException
-
LineInput
public static java.lang.String LineInput(int FileNumber) throws java.lang.Throwable, InvalidOperationException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException, ArgumentOutOfRangeException, NullReferenceException, OutOfMemoryException
-
ChDir
public static void ChDir(java.lang.String Path) throws java.lang.Throwable, ArgumentOutOfRangeException, NotSupportedException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, FormatException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, AbandonedMutexException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
NotSupportedException
IndexOutOfRangeException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
FormatException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
AbandonedMutexException
OutOfMemoryException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
-
ChDrive
public static void ChDrive(char Drive) throws java.lang.Throwable, ArgumentNullException, ArgumentException, CultureNotFoundException, NotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, OutOfMemoryException, InvalidOperationException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
CultureNotFoundException
NotSupportedException
IndexOutOfRangeException
ArgumentOutOfRangeException
OutOfMemoryException
InvalidOperationException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
PathTooLongException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
-
ChDrive
public static void ChDrive(java.lang.String Drive) throws java.lang.Throwable, ArgumentNullException, ArgumentException, CultureNotFoundException, NotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, PathTooLongException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
CultureNotFoundException
NotSupportedException
IndexOutOfRangeException
ArgumentOutOfRangeException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
PathTooLongException
-
FileClose
public static void FileClose(int... FileNumbers) throws java.lang.Throwable, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, FormatException, ArgumentException, NotSupportedException, IndexOutOfRangeException, CultureNotFoundException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException
- Throws:
java.lang.Throwable
InvalidOperationException
ArgumentOutOfRangeException
ArgumentNullException
FormatException
ArgumentException
NotSupportedException
IndexOutOfRangeException
CultureNotFoundException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
SecurityException
-
FileClose
public static void FileClose(JCORefOut dupParam0) throws java.lang.Throwable, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, FormatException, ArgumentException, NotSupportedException, IndexOutOfRangeException, CultureNotFoundException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException
- Throws:
java.lang.Throwable
InvalidOperationException
ArgumentOutOfRangeException
ArgumentNullException
FormatException
ArgumentException
NotSupportedException
IndexOutOfRangeException
CultureNotFoundException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
SecurityException
-
FileCopy
public static void FileCopy(java.lang.String Source, java.lang.String Destination) throws java.lang.Throwable, NotSupportedException, ArgumentOutOfRangeException, OutOfMemoryException, IndexOutOfRangeException, ArgumentException, InvalidOperationException, ArgumentNullException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, SecurityException, PathTooLongException, IOException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentOutOfRangeException
OutOfMemoryException
IndexOutOfRangeException
ArgumentException
InvalidOperationException
ArgumentNullException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
SecurityException
PathTooLongException
IOException
-
FileGetObject
public static void FileGetObject(int FileNumber, JCORefOut<NetObject> Value, long RecordNumber) throws java.lang.Throwable, NotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, InvalidOperationException, ArgumentNullException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, SecurityException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
InvalidOperationException
ArgumentNullException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
SecurityException
-
FileOpen
public static void FileOpen(int FileNumber, java.lang.String FileName, OpenMode Mode, OpenAccess Access, OpenShare Share, int RecordLength) throws java.lang.Throwable, NotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, InvalidOperationException, ArgumentNullException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, SecurityException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, NullReferenceException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
InvalidOperationException
ArgumentNullException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
SecurityException
PathTooLongException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
NullReferenceException
-
FilePut
public static void FilePut(int FileNumber, boolean Value, long RecordNumber) throws java.lang.Throwable, NotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, InvalidOperationException, ArgumentNullException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, SecurityException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
InvalidOperationException
ArgumentNullException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
SecurityException
-
FilePut
public static void FilePut(int FileNumber, byte Value, long RecordNumber) throws java.lang.Throwable, NotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, InvalidOperationException, ArgumentNullException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, SecurityException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
InvalidOperationException
ArgumentNullException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
SecurityException
-
FilePut
public static void FilePut(int FileNumber, char Value, long RecordNumber) throws java.lang.Throwable, NotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, InvalidOperationException, ArgumentNullException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, SecurityException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
InvalidOperationException
ArgumentNullException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
SecurityException
-
FilePut
public static void FilePut(int FileNumber, double Value, long RecordNumber) throws java.lang.Throwable, NotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, InvalidOperationException, ArgumentNullException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, SecurityException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
InvalidOperationException
ArgumentNullException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
SecurityException
-
FilePut
public static void FilePut(int FileNumber, short Value, long RecordNumber) throws java.lang.Throwable, NotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, InvalidOperationException, ArgumentNullException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, SecurityException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
InvalidOperationException
ArgumentNullException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
SecurityException
-
FilePut
public static void FilePut(int FileNumber, int Value, long RecordNumber) throws java.lang.Throwable, NotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, InvalidOperationException, ArgumentNullException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, SecurityException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
InvalidOperationException
ArgumentNullException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
SecurityException
-
FilePut
public static void FilePut(int FileNumber, long Value, long RecordNumber) throws java.lang.Throwable, NotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, InvalidOperationException, ArgumentNullException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, SecurityException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
InvalidOperationException
ArgumentNullException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
SecurityException
-
FilePut
public static void FilePut(int FileNumber, Single Value, long RecordNumber) throws java.lang.Throwable, NotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, InvalidOperationException, ArgumentNullException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, SecurityException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
InvalidOperationException
ArgumentNullException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
SecurityException
-
FilePut
public static void FilePut(int FileNumber, Array Value, long RecordNumber, boolean ArrayIsDynamic, boolean StringIsFixedLength) throws java.lang.Throwable, NotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, InvalidOperationException, ArgumentNullException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, SecurityException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
InvalidOperationException
ArgumentNullException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
SecurityException
-
FilePut
public static void FilePut(int FileNumber, DateTime Value, long RecordNumber) throws java.lang.Throwable, NotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, InvalidOperationException, ArgumentNullException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, SecurityException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
InvalidOperationException
ArgumentNullException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
SecurityException
-
FilePut
public static void FilePut(int FileNumber, Decimal Value, long RecordNumber) throws java.lang.Throwable, NotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, InvalidOperationException, ArgumentNullException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, SecurityException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
InvalidOperationException
ArgumentNullException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
SecurityException
-
FilePut
public static void FilePut(int FileNumber, java.lang.String Value, long RecordNumber, boolean StringIsFixedLength) throws java.lang.Throwable, NotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, InvalidOperationException, ArgumentNullException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, SecurityException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
InvalidOperationException
ArgumentNullException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
SecurityException
-
FilePut
public static void FilePut(int FileNumber, ValueType Value, long RecordNumber) throws java.lang.Throwable, NotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, InvalidOperationException, ArgumentNullException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, SecurityException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
InvalidOperationException
ArgumentNullException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
SecurityException
-
FilePut
public static void FilePut(NetObject FileNumber, NetObject Value, NetObject RecordNumber) throws java.lang.Throwable, ArgumentOutOfRangeException, NotSupportedException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, FormatException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, AbandonedMutexException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
NotSupportedException
IndexOutOfRangeException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
FormatException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
AbandonedMutexException
-
FilePutObject
public static void FilePutObject(int FileNumber, NetObject Value, long RecordNumber) throws java.lang.Throwable, NotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, InvalidOperationException, ArgumentNullException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, SecurityException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
InvalidOperationException
ArgumentNullException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
SecurityException
-
FileWidth
public static void FileWidth(int FileNumber, int RecordWidth) throws java.lang.Throwable, InvalidOperationException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException, ArgumentOutOfRangeException
-
Kill
public static void Kill(java.lang.String PathName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, PathTooLongException, OutOfMemoryException, IndexOutOfRangeException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, InvalidOperationException, NullReferenceException, FormatException, MissingMethodException, TargetInvocationException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, AbandonedMutexException, SecurityException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
PathTooLongException
OutOfMemoryException
IndexOutOfRangeException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
InvalidOperationException
NullReferenceException
FormatException
MissingMethodException
TargetInvocationException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
AbandonedMutexException
SecurityException
-
Lock
public static void Lock(int FileNumber) throws java.lang.Throwable, InvalidOperationException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException, ArgumentOutOfRangeException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
InvalidOperationException
IndexOutOfRangeException
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
SecurityException
ArgumentOutOfRangeException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
-
Lock
public static void Lock(int FileNumber, long Record) throws java.lang.Throwable, InvalidOperationException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException, ArgumentOutOfRangeException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
InvalidOperationException
IndexOutOfRangeException
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
SecurityException
ArgumentOutOfRangeException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
-
Lock
public static void Lock(int FileNumber, long FromRecord, long ToRecord) throws java.lang.Throwable, InvalidOperationException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException, ArgumentOutOfRangeException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
InvalidOperationException
IndexOutOfRangeException
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
SecurityException
ArgumentOutOfRangeException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
-
MkDir
public static void MkDir(java.lang.String Path) throws java.lang.Throwable, ArgumentOutOfRangeException, NotSupportedException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, FormatException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, AbandonedMutexException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
NotSupportedException
IndexOutOfRangeException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
FormatException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
AbandonedMutexException
PathTooLongException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
-
Print
public static void Print(int FileNumber, NetObject... Output) throws java.lang.Throwable, InvalidOperationException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException, ArgumentOutOfRangeException, OverflowException, NotSupportedException, FormatException, NullReferenceException, InvalidCastException
- Throws:
java.lang.Throwable
InvalidOperationException
IndexOutOfRangeException
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
SecurityException
ArgumentOutOfRangeException
OverflowException
NotSupportedException
FormatException
NullReferenceException
InvalidCastException
-
PrintLine
public static void PrintLine(int FileNumber, NetObject... Output) throws java.lang.Throwable, InvalidOperationException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException, ArgumentOutOfRangeException, OverflowException, NotSupportedException, FormatException, InvalidCastException
- Throws:
java.lang.Throwable
InvalidOperationException
IndexOutOfRangeException
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
SecurityException
ArgumentOutOfRangeException
OverflowException
NotSupportedException
FormatException
InvalidCastException
-
Rename
public static void Rename(java.lang.String OldPath, java.lang.String NewPath) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, FormatException, ArgumentException, InvalidOperationException, NotSupportedException, IndexOutOfRangeException, CultureNotFoundException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
FormatException
ArgumentException
InvalidOperationException
NotSupportedException
IndexOutOfRangeException
CultureNotFoundException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
SecurityException
PathTooLongException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
-
Reset
public static void Reset() throws java.lang.Throwable, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, FormatException, ArgumentException, NotSupportedException, IndexOutOfRangeException, CultureNotFoundException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException
- Throws:
java.lang.Throwable
InvalidOperationException
ArgumentOutOfRangeException
ArgumentNullException
FormatException
ArgumentException
NotSupportedException
IndexOutOfRangeException
CultureNotFoundException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
SecurityException
-
RmDir
public static void RmDir(java.lang.String Path) throws java.lang.Throwable, ArgumentOutOfRangeException, NotSupportedException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, FormatException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, AbandonedMutexException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
NotSupportedException
IndexOutOfRangeException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
FormatException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
AbandonedMutexException
PathTooLongException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
-
Seek
public static void Seek(int FileNumber, long Position) throws java.lang.Throwable, InvalidOperationException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException, ArgumentOutOfRangeException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OutOfMemoryException, OperationCanceledException, WaitHandleCannotBeOpenedException, EndOfStreamException, TaskSchedulerException, TaskCanceledException, AggregateException, SemaphoreFullException
- Throws:
java.lang.Throwable
InvalidOperationException
IndexOutOfRangeException
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
SecurityException
ArgumentOutOfRangeException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OutOfMemoryException
OperationCanceledException
WaitHandleCannotBeOpenedException
EndOfStreamException
TaskSchedulerException
TaskCanceledException
AggregateException
SemaphoreFullException
-
SetAttr
public static void SetAttr(java.lang.String PathName, FileAttribute Attributes) throws java.lang.Throwable, ArgumentOutOfRangeException, NotSupportedException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, FormatException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, AbandonedMutexException, SecurityException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
NotSupportedException
IndexOutOfRangeException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
FormatException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
AbandonedMutexException
SecurityException
PathTooLongException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
-
Unlock
public static void Unlock(int FileNumber) throws java.lang.Throwable, InvalidOperationException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException, ArgumentOutOfRangeException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
InvalidOperationException
IndexOutOfRangeException
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
SecurityException
ArgumentOutOfRangeException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
-
Unlock
public static void Unlock(int FileNumber, long Record) throws java.lang.Throwable, InvalidOperationException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException, ArgumentOutOfRangeException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
InvalidOperationException
IndexOutOfRangeException
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
SecurityException
ArgumentOutOfRangeException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
-
Unlock
public static void Unlock(int FileNumber, long FromRecord, long ToRecord) throws java.lang.Throwable, InvalidOperationException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException, ArgumentOutOfRangeException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
InvalidOperationException
IndexOutOfRangeException
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
SecurityException
ArgumentOutOfRangeException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
-
Write
public static void Write(int FileNumber, NetObject... Output) throws java.lang.Throwable, InvalidOperationException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException, ArgumentOutOfRangeException, OverflowException, NotSupportedException, FormatException, InvalidCastException
- Throws:
java.lang.Throwable
InvalidOperationException
IndexOutOfRangeException
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
SecurityException
ArgumentOutOfRangeException
OverflowException
NotSupportedException
FormatException
InvalidCastException
-
WriteLine
public static void WriteLine(int FileNumber, NetObject... Output) throws java.lang.Throwable, InvalidOperationException, IndexOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, SecurityException, ArgumentOutOfRangeException, OverflowException, NotSupportedException, FormatException, InvalidCastException
- Throws:
java.lang.Throwable
InvalidOperationException
IndexOutOfRangeException
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
SecurityException
ArgumentOutOfRangeException
OverflowException
NotSupportedException
FormatException
InvalidCastException
-
-