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.StringassemblyFullNameFully assembly qualified name: Microsoft.VisualBasic.Core, Version=13.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.StringassemblyShortNameAssembly name: Microsoft.VisualBasic.Corestatic java.lang.StringclassNameQualified class name: Microsoft.VisualBasic.FileSystemstatic JCTypeclassTypeThe 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 FileSystemcast(IJCOBridgeReflected from)Try to cast theIJCOBridgeReflectedinstance intoFileSystem, a cast assert is made to check if types are compatible.static voidChDir(java.lang.String Path)static voidChDrive(char Drive)static voidChDrive(java.lang.String Drive)static java.lang.StringCurDir()static java.lang.StringCurDir(char Drive)static java.lang.StringDir()static java.lang.StringDir(java.lang.String PathName, FileAttribute Attributes)static booleanEOF(int FileNumber)static OpenModeFileAttr(int FileNumber)static voidFileClose(int... FileNumbers)static voidFileClose(JCORefOut dupParam0)static voidFileCopy(java.lang.String Source, java.lang.String Destination)static DateTimeFileDateTime(java.lang.String PathName)static voidFileGetObject(int FileNumber, JCORefOut<NetObject> Value, long RecordNumber)static longFileLen(java.lang.String PathName)static voidFileOpen(int FileNumber, java.lang.String FileName, OpenMode Mode, OpenAccess Access, OpenShare Share, int RecordLength)static voidFilePut(int FileNumber, boolean Value, long RecordNumber)static voidFilePut(int FileNumber, byte Value, long RecordNumber)static voidFilePut(int FileNumber, char Value, long RecordNumber)static voidFilePut(int FileNumber, double Value, long RecordNumber)static voidFilePut(int FileNumber, int Value, long RecordNumber)static voidFilePut(int FileNumber, long Value, long RecordNumber)static voidFilePut(int FileNumber, short Value, long RecordNumber)static voidFilePut(int FileNumber, java.lang.String Value, long RecordNumber, boolean StringIsFixedLength)static voidFilePut(int FileNumber, Array Value, long RecordNumber, boolean ArrayIsDynamic, boolean StringIsFixedLength)static voidFilePut(int FileNumber, DateTime Value, long RecordNumber)static voidFilePut(int FileNumber, Decimal Value, long RecordNumber)static voidFilePut(int FileNumber, Single Value, long RecordNumber)static voidFilePut(int FileNumber, ValueType Value, long RecordNumber)static voidFilePut(NetObject FileNumber, NetObject Value, NetObject RecordNumber)static voidFilePutObject(int FileNumber, NetObject Value, long RecordNumber)static voidFileWidth(int FileNumber, int RecordWidth)static intFreeFile()static FileAttributeGetAttr(java.lang.String PathName)java.lang.StringgetJCOAssemblyName()Returns the reflected Assembly namejava.lang.StringgetJCOClassName()Returns the reflected Class namejava.lang.ObjectgetJCOInstance()Returns the instantiated classjava.lang.StringgetJCOObjectName()Returns the reflected Class name used to build the objectJCTypegetJCOType()Returns the instantiated class Typestatic java.lang.StringInputString(int FileNumber, int CharCount)static voidKill(java.lang.String PathName)static java.lang.StringLineInput(int FileNumber)static longLoc(int FileNumber)static voidLock(int FileNumber)static voidLock(int FileNumber, long Record)static voidLock(int FileNumber, long FromRecord, long ToRecord)static longLOF(int FileNumber)static voidMkDir(java.lang.String Path)static voidPrint(int FileNumber, NetObject... Output)static voidPrintLine(int FileNumber, NetObject... Output)static voidRename(java.lang.String OldPath, java.lang.String NewPath)static voidReset()static voidRmDir(java.lang.String Path)static longSeek(int FileNumber)static voidSeek(int FileNumber, long Position)static voidSetAttr(java.lang.String PathName, FileAttribute Attributes)voidsetJCOInstance(JCObject instance)static SpcInfoSPC(short Count)static TabInfoTAB()static TabInfoTAB(short Column)static voidUnlock(int FileNumber)static voidUnlock(int FileNumber, long Record)static voidUnlock(int FileNumber, long FromRecord, long ToRecord)static voidWrite(int FileNumber, NetObject... Output)static voidWriteLine(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:IJCOBridgeReflectedReturns the reflected Assembly name- Specified by:
getJCOAssemblyNamein interfaceIJCOBridgeReflected- Overrides:
getJCOAssemblyNamein classNetObject- Returns:
- A
Stringrepresenting the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name- Specified by:
getJCOClassNamein interfaceIJCOBridgeReflected- Overrides:
getJCOClassNamein classNetObject- Returns:
- A
Stringrepresenting the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name used to build the object- Specified by:
getJCOObjectNamein interfaceIJCOBridgeReflected- Overrides:
getJCOObjectNamein classNetObject- Returns:
- A
Stringrepresenting the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class- Specified by:
getJCOInstancein interfaceIJCOBridgeReflected- Overrides:
getJCOInstancein classNetObject- Returns:
- An
Objectrepresenting the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstancein classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class Type- Specified by:
getJCOTypein interfaceIJCOBridgeReflected- Overrides:
getJCOTypein classNetObject- Returns:
- A
JCTyperepresenting the CLR Type of the instantiated Class
-
cast
public static FileSystem cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflectedinstance intoFileSystem, a cast assert is made to check if types are compatible.- Parameters:
from-IJCOBridgeReflectedinstance to be casted- Returns:
FileSysteminstance- 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.ThrowableNotSupportedExceptionArgumentExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionIndexOutOfRangeExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionSecurityExceptionRankExceptionArrayTypeMismatchExceptionFormatException
-
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.ThrowableNotSupportedExceptionArgumentExceptionArgumentNullExceptionIndexOutOfRangeExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMethodAccessExceptionMissingMethodExceptionMemberAccessExceptionTargetInvocationExceptionFileNotFoundException
-
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.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionIndexOutOfRangeExceptionFormatExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionMissingMethodExceptionTargetInvocationExceptionFileNotFoundException
-
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.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionCultureNotFoundExceptionOutOfMemoryExceptionExternalExceptionArgumentNullExceptionFormatExceptionMethodAccessExceptionMissingMethodExceptionMemberAccessExceptionTargetInvocationExceptionOverflowExceptionFileNotFoundException
-
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.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionOutOfMemoryExceptionFormatExceptionSecurityException
-
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.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionOutOfMemoryExceptionExternalExceptionSecurityExceptionIndexOutOfRangeExceptionRankExceptionArrayTypeMismatchExceptionFormatExceptionNullReferenceExceptionOverflowException
-
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.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionOutOfMemoryExceptionExternalExceptionSecurityExceptionIndexOutOfRangeExceptionRankExceptionArrayTypeMismatchExceptionNotSupportedExceptionMethodAccessExceptionMissingMethodExceptionMemberAccessExceptionTargetInvocationExceptionIOException
-
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.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionOutOfMemoryExceptionExternalExceptionNotSupportedExceptionIndexOutOfRangeExceptionFormatExceptionSecurityExceptionRankExceptionArrayTypeMismatchException
-
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.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionOutOfMemoryExceptionExternalExceptionFormatExceptionSecurityExceptionIndexOutOfRangeExceptionRankExceptionArrayTypeMismatchException
-
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.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionOutOfMemoryExceptionExternalExceptionFormatExceptionSecurityExceptionIndexOutOfRangeExceptionRankExceptionArrayTypeMismatchException
-
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.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionOutOfMemoryExceptionExternalExceptionFormatExceptionSecurityExceptionIndexOutOfRangeExceptionRankExceptionArrayTypeMismatchException
-
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.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionOutOfMemoryExceptionExternalExceptionFormatExceptionSecurityExceptionIndexOutOfRangeExceptionRankExceptionArrayTypeMismatchException
-
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.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionOutOfMemoryExceptionExternalExceptionFormatExceptionSecurityExceptionIndexOutOfRangeExceptionRankExceptionArrayTypeMismatchException
-
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.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionOutOfMemoryExceptionExternalExceptionFormatExceptionSecurityExceptionIndexOutOfRangeExceptionRankExceptionArrayTypeMismatchException
-
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.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionOutOfMemoryExceptionExternalExceptionFormatExceptionSecurityExceptionIndexOutOfRangeExceptionRankExceptionArrayTypeMismatchException
-
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.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionOutOfMemoryExceptionExternalExceptionFormatExceptionSecurityExceptionIndexOutOfRangeExceptionRankExceptionArrayTypeMismatchException
-
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.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionOutOfMemoryExceptionExternalExceptionFormatExceptionSecurityExceptionIndexOutOfRangeExceptionRankExceptionArrayTypeMismatchException
-
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.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionOutOfMemoryExceptionExternalExceptionFormatExceptionSecurityExceptionIndexOutOfRangeExceptionRankExceptionArrayTypeMismatchException
-
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.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionOutOfMemoryExceptionExternalExceptionFormatExceptionSecurityExceptionIndexOutOfRangeExceptionRankExceptionArrayTypeMismatchException
-
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.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionOutOfMemoryExceptionExternalExceptionFormatExceptionSecurityExceptionIndexOutOfRangeExceptionRankExceptionArrayTypeMismatchException
-
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.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionOutOfMemoryExceptionExternalExceptionFormatExceptionSecurityExceptionIndexOutOfRangeExceptionRankExceptionArrayTypeMismatchException
-
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.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionOutOfMemoryExceptionExternalExceptionFormatExceptionSecurityExceptionIndexOutOfRangeExceptionRankExceptionArrayTypeMismatchException
-
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.ThrowableNotSupportedExceptionArgumentExceptionIndexOutOfRangeExceptionPlatformNotSupportedExceptionArgumentNullExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionRankExceptionArrayTypeMismatchExceptionMissingMethodExceptionTargetInvocationExceptionSecurityExceptionFileNotFoundException
-
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.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionOutOfMemoryExceptionExternalExceptionMissingMethodExceptionTargetInvocationExceptionNotSupportedExceptionFormatExceptionIndexOutOfRangeExceptionRankExceptionArrayTypeMismatchException
-
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.ThrowableArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionCultureNotFoundExceptionOutOfMemoryExceptionExternalExceptionSecurityExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionFormatException
-
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.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionOutOfMemoryExceptionExternalExceptionIOExceptionNotSupportedExceptionMethodAccessExceptionMissingMethodExceptionMemberAccessExceptionTargetInvocationException
-
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.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionOutOfMemoryExceptionExternalExceptionSecurityExceptionIndexOutOfRangeExceptionRankExceptionArrayTypeMismatchExceptionFormatException
-
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
-
-