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.Core, Version=13.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.Core, Version=13.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.String
assemblyShortName
Assembly name: Microsoft.VisualBasic.Corestatic 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.Core, Version=13.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: Microsoft.VisualBasic.Core- 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, NotSupportedException, ArgumentException, PlatformNotSupportedException, OutOfMemoryException, CultureNotFoundException, ArgumentOutOfRangeException, SecurityException, InvalidOperationException
-
FreeFile
public static int FreeFile() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, IndexOutOfRangeException, OutOfMemoryException, ExternalException, CultureNotFoundException, SecurityException, RankException, ArrayTypeMismatchException, FormatException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
InvalidOperationException
IndexOutOfRangeException
OutOfMemoryException
ExternalException
CultureNotFoundException
SecurityException
RankException
ArrayTypeMismatchException
FormatException
-
FileLen
public static long FileLen(java.lang.String PathName) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, MethodAccessException, MissingMethodException, MemberAccessException, TargetInvocationException, FileNotFoundException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
ArgumentNullException
IndexOutOfRangeException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
MethodAccessException
MissingMethodException
MemberAccessException
TargetInvocationException
FileNotFoundException
-
Loc
public static long Loc(int FileNumber) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, OutOfMemoryException, CultureNotFoundException, ArgumentOutOfRangeException, SecurityException, InvalidOperationException
-
LOF
public static long LOF(int FileNumber) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, OutOfMemoryException, CultureNotFoundException, ArgumentOutOfRangeException, SecurityException, InvalidOperationException, ObjectDisposedException
-
Seek
public static long Seek(int FileNumber) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, OutOfMemoryException, CultureNotFoundException, ArgumentOutOfRangeException, SecurityException, InvalidOperationException
-
GetAttr
public static FileAttribute GetAttr(java.lang.String PathName) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, FormatException, OutOfMemoryException, ExternalException, CultureNotFoundException, MissingMethodException, TargetInvocationException, FileNotFoundException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
IndexOutOfRangeException
FormatException
OutOfMemoryException
ExternalException
CultureNotFoundException
MissingMethodException
TargetInvocationException
FileNotFoundException
-
FileAttr
public static OpenMode FileAttr(int FileNumber) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, OutOfMemoryException, CultureNotFoundException, ArgumentOutOfRangeException, SecurityException, InvalidOperationException
-
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, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, CultureNotFoundException, OutOfMemoryException, ExternalException, ArgumentNullException, FormatException, MethodAccessException, MissingMethodException, MemberAccessException, TargetInvocationException, OverflowException, FileNotFoundException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
CultureNotFoundException
OutOfMemoryException
ExternalException
ArgumentNullException
FormatException
MethodAccessException
MissingMethodException
MemberAccessException
TargetInvocationException
OverflowException
FileNotFoundException
-
CurDir
public static java.lang.String CurDir() throws java.lang.Throwable, InvalidOperationException, ArgumentNullException, PlatformNotSupportedException, ArgumentException, ArgumentOutOfRangeException, OutOfMemoryException, IndexOutOfRangeException, CultureNotFoundException
-
CurDir
public static java.lang.String CurDir(char Drive) throws java.lang.Throwable, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, CultureNotFoundException, ObjectDisposedException, NotSupportedException, OutOfMemoryException, IndexOutOfRangeException
-
Dir
public static java.lang.String Dir() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, CultureNotFoundException, SecurityException, RankException, ArrayTypeMismatchException, InvalidOperationException, OutOfMemoryException
-
Dir
public static java.lang.String Dir(java.lang.String PathName, FileAttribute Attributes) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, OutOfMemoryException, FormatException, SecurityException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
OutOfMemoryException
FormatException
SecurityException
-
InputString
public static java.lang.String InputString(int FileNumber, int CharCount) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException, SecurityException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException, FormatException, NullReferenceException, OverflowException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
ExternalException
SecurityException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
FormatException
NullReferenceException
OverflowException
-
LineInput
public static java.lang.String LineInput(int FileNumber) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, OutOfMemoryException, CultureNotFoundException, ArgumentOutOfRangeException, SecurityException, InvalidOperationException, NullReferenceException, ObjectDisposedException, ArrayTypeMismatchException
-
ChDir
public static void ChDir(java.lang.String Path) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, CultureNotFoundException, OutOfMemoryException, ExternalException, ArgumentNullException, FormatException
-
ChDrive
public static void ChDrive(char Drive) throws java.lang.Throwable, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, CultureNotFoundException, ObjectDisposedException, NotSupportedException, IndexOutOfRangeException, OutOfMemoryException
-
ChDrive
public static void ChDrive(java.lang.String Drive) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, CultureNotFoundException, OutOfMemoryException
-
FileClose
public static void FileClose(int... FileNumbers) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, IndexOutOfRangeException, OutOfMemoryException, ExternalException, CultureNotFoundException, SecurityException, RankException, ArrayTypeMismatchException
-
FileClose
public static void FileClose(JCORefOut dupParam0) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, IndexOutOfRangeException, OutOfMemoryException, ExternalException, CultureNotFoundException, SecurityException, RankException, ArrayTypeMismatchException
-
FileCopy
public static void FileCopy(java.lang.String Source, java.lang.String Destination) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException, SecurityException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException, NotSupportedException, MethodAccessException, MissingMethodException, MemberAccessException, TargetInvocationException, IOException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
ExternalException
SecurityException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
NotSupportedException
MethodAccessException
MissingMethodException
MemberAccessException
TargetInvocationException
IOException
-
FileGetObject
public static void FileGetObject(int FileNumber, JCORefOut<NetObject> Value, long RecordNumber) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException, SecurityException
-
FileOpen
public static void FileOpen(int FileNumber, java.lang.String FileName, OpenMode Mode, OpenAccess Access, OpenShare Share, int RecordLength) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException, NotSupportedException, IndexOutOfRangeException, FormatException, SecurityException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
ExternalException
NotSupportedException
IndexOutOfRangeException
FormatException
SecurityException
RankException
ArrayTypeMismatchException
-
FilePut
public static void FilePut(int FileNumber, boolean Value, long RecordNumber) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException, FormatException, SecurityException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
ExternalException
FormatException
SecurityException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
-
FilePut
public static void FilePut(int FileNumber, byte Value, long RecordNumber) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException, FormatException, SecurityException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
ExternalException
FormatException
SecurityException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
-
FilePut
public static void FilePut(int FileNumber, char Value, long RecordNumber) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException, FormatException, SecurityException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
ExternalException
FormatException
SecurityException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
-
FilePut
public static void FilePut(int FileNumber, double Value, long RecordNumber) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException, FormatException, SecurityException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
ExternalException
FormatException
SecurityException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
-
FilePut
public static void FilePut(int FileNumber, short Value, long RecordNumber) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException, FormatException, SecurityException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
ExternalException
FormatException
SecurityException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
-
FilePut
public static void FilePut(int FileNumber, int Value, long RecordNumber) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException, FormatException, SecurityException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
ExternalException
FormatException
SecurityException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
-
FilePut
public static void FilePut(int FileNumber, long Value, long RecordNumber) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException, FormatException, SecurityException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
ExternalException
FormatException
SecurityException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
-
FilePut
public static void FilePut(int FileNumber, Single Value, long RecordNumber) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException, FormatException, SecurityException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
ExternalException
FormatException
SecurityException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
-
FilePut
public static void FilePut(int FileNumber, Array Value, long RecordNumber, boolean ArrayIsDynamic, boolean StringIsFixedLength) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException, FormatException, SecurityException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
ExternalException
FormatException
SecurityException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
-
FilePut
public static void FilePut(int FileNumber, DateTime Value, long RecordNumber) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException, FormatException, SecurityException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
ExternalException
FormatException
SecurityException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
-
FilePut
public static void FilePut(int FileNumber, Decimal Value, long RecordNumber) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException, FormatException, SecurityException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
ExternalException
FormatException
SecurityException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
-
FilePut
public static void FilePut(int FileNumber, java.lang.String Value, long RecordNumber, boolean StringIsFixedLength) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException, FormatException, SecurityException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
ExternalException
FormatException
SecurityException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
-
FilePut
public static void FilePut(int FileNumber, ValueType Value, long RecordNumber) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException, FormatException, SecurityException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
ExternalException
FormatException
SecurityException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
-
FilePut
public static void FilePut(NetObject FileNumber, NetObject Value, NetObject RecordNumber) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException
-
FilePutObject
public static void FilePutObject(int FileNumber, NetObject Value, long RecordNumber) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException, FormatException, SecurityException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
ExternalException
FormatException
SecurityException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
-
FileWidth
public static void FileWidth(int FileNumber, int RecordWidth) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, OutOfMemoryException, CultureNotFoundException, ArgumentOutOfRangeException, SecurityException, InvalidOperationException
-
Kill
public static void Kill(java.lang.String PathName) throws java.lang.Throwable, NotSupportedException, ArgumentException, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ArgumentOutOfRangeException, InvalidOperationException, OutOfMemoryException, ExternalException, CultureNotFoundException, RankException, ArrayTypeMismatchException, MissingMethodException, TargetInvocationException, SecurityException, FileNotFoundException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
IndexOutOfRangeException
PlatformNotSupportedException
ArgumentNullException
ArgumentOutOfRangeException
InvalidOperationException
OutOfMemoryException
ExternalException
CultureNotFoundException
RankException
ArrayTypeMismatchException
MissingMethodException
TargetInvocationException
SecurityException
FileNotFoundException
-
Lock
public static void Lock(int FileNumber, long FromRecord, long ToRecord) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, OutOfMemoryException, CultureNotFoundException, ArgumentOutOfRangeException, SecurityException, InvalidOperationException, ObjectDisposedException
-
Lock
public static void Lock(int FileNumber, long Record) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, OutOfMemoryException, CultureNotFoundException, ArgumentOutOfRangeException, SecurityException, InvalidOperationException, ObjectDisposedException
-
Lock
public static void Lock(int FileNumber) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, OutOfMemoryException, CultureNotFoundException, ArgumentOutOfRangeException, SecurityException, InvalidOperationException, ObjectDisposedException
-
MkDir
public static void MkDir(java.lang.String Path) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException, MissingMethodException, TargetInvocationException, NotSupportedException, FormatException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
ExternalException
MissingMethodException
TargetInvocationException
NotSupportedException
FormatException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
-
Print
public static void Print(int FileNumber, NetObject... Output) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, OutOfMemoryException, CultureNotFoundException, ArgumentOutOfRangeException, SecurityException, InvalidOperationException, IndexOutOfRangeException, OverflowException, FormatException, InvalidCastException
-
PrintLine
public static void PrintLine(int FileNumber, NetObject... Output) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, OutOfMemoryException, CultureNotFoundException, ArgumentOutOfRangeException, SecurityException, InvalidOperationException, IndexOutOfRangeException, OverflowException, FormatException, InvalidCastException
-
Rename
public static void Rename(java.lang.String OldPath, java.lang.String NewPath) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, PlatformNotSupportedException, IndexOutOfRangeException, CultureNotFoundException, OutOfMemoryException, ExternalException, SecurityException, RankException, ArrayTypeMismatchException, ArgumentNullException, FormatException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentException
InvalidOperationException
PlatformNotSupportedException
IndexOutOfRangeException
CultureNotFoundException
OutOfMemoryException
ExternalException
SecurityException
RankException
ArrayTypeMismatchException
ArgumentNullException
FormatException
-
Reset
public static void Reset() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, CultureNotFoundException, SecurityException, RankException, ArrayTypeMismatchException, InvalidOperationException
-
RmDir
public static void RmDir(java.lang.String Path) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException, IOException, NotSupportedException, MethodAccessException, MissingMethodException, MemberAccessException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
ExternalException
IOException
NotSupportedException
MethodAccessException
MissingMethodException
MemberAccessException
TargetInvocationException
-
Seek
public static void Seek(int FileNumber, long Position) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, OutOfMemoryException, CultureNotFoundException, ArgumentOutOfRangeException, SecurityException, InvalidOperationException, ObjectDisposedException
-
SetAttr
public static void SetAttr(java.lang.String PathName, FileAttribute Attributes) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException, SecurityException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException, FormatException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
ExternalException
SecurityException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
FormatException
-
Unlock
public static void Unlock(int FileNumber, long FromRecord, long ToRecord) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, OutOfMemoryException, CultureNotFoundException, ArgumentOutOfRangeException, SecurityException, InvalidOperationException, ObjectDisposedException
-
Unlock
public static void Unlock(int FileNumber, long Record) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, OutOfMemoryException, CultureNotFoundException, ArgumentOutOfRangeException, SecurityException, InvalidOperationException, ObjectDisposedException
-
Unlock
public static void Unlock(int FileNumber) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, OutOfMemoryException, CultureNotFoundException, ArgumentOutOfRangeException, SecurityException, InvalidOperationException, ObjectDisposedException
-
Write
public static void Write(int FileNumber, NetObject... Output) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, OutOfMemoryException, CultureNotFoundException, ArgumentOutOfRangeException, SecurityException, InvalidOperationException, IndexOutOfRangeException, OverflowException, FormatException, InvalidCastException
-
WriteLine
public static void WriteLine(int FileNumber, NetObject... Output) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, OutOfMemoryException, CultureNotFoundException, ArgumentOutOfRangeException, SecurityException, InvalidOperationException, IndexOutOfRangeException, OverflowException, FormatException, InvalidCastException
-
-