Package system.io.isolatedstorage
Class IsolatedStorageFile
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.MarshalByRefObject
-
- system.io.isolatedstorage.IsolatedStorage
-
- system.io.isolatedstorage.IsolatedStorageFile
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,IJCOBridgeReflected
public class IsolatedStorageFile extends IsolatedStorage implements java.lang.AutoCloseable
The base .NET class managing System.IO.IsolatedStorage.IsolatedStorageFile, System.IO.IsolatedStorage, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.IO.IsolatedStorage.IsolatedStorageFile
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: System.IO.IsolatedStorage, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.String
assemblyShortName
Assembly name: System.IO.IsolatedStoragestatic java.lang.String
className
Qualified class name: System.IO.IsolatedStorage.IsolatedStorageFilestatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description IsolatedStorageFile()
IsolatedStorageFile(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IsolatedStorageFile
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoIsolatedStorageFile
, a cast assert is made to check if types are compatible.void
close()
void
Close()
void
CopyFile(java.lang.String sourceFileName, java.lang.String destinationFileName)
void
CopyFile(java.lang.String sourceFileName, java.lang.String destinationFileName, boolean overwrite)
void
CreateDirectory(java.lang.String dir)
IsolatedStorageFileStream
CreateFile(java.lang.String path)
void
DeleteDirectory(java.lang.String dir)
void
DeleteFile(java.lang.String file)
boolean
DirectoryExists(java.lang.String path)
void
Dispose()
boolean
FileExists(java.lang.String path)
DateTimeOffset
GetCreationTime(java.lang.String path)
java.lang.String[]
GetDirectoryNames()
java.lang.String[]
GetDirectoryNames(java.lang.String searchPattern)
static IEnumerator
GetEnumerator(IsolatedStorageScope scope)
java.lang.String[]
GetFileNames()
java.lang.String[]
GetFileNames(java.lang.String searchPattern)
static boolean
getIsEnabled()
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 TypeDateTimeOffset
GetLastAccessTime(java.lang.String path)
DateTimeOffset
GetLastWriteTime(java.lang.String path)
static IsolatedStorageFile
GetMachineStoreForApplication()
static IsolatedStorageFile
GetMachineStoreForAssembly()
static IsolatedStorageFile
GetMachineStoreForDomain()
static IsolatedStorageFile
GetStore(IsolatedStorageScope scope, NetObject applicationIdentity)
static IsolatedStorageFile
GetStore(IsolatedStorageScope scope, NetObject domainIdentity, NetObject assemblyIdentity)
static IsolatedStorageFile
GetStore(IsolatedStorageScope scope, NetType applicationEvidenceType)
static IsolatedStorageFile
GetStore(IsolatedStorageScope scope, NetType domainEvidenceType, NetType assemblyEvidenceType)
static IsolatedStorageFile
GetUserStoreForApplication()
static IsolatedStorageFile
GetUserStoreForAssembly()
static IsolatedStorageFile
GetUserStoreForDomain()
static IsolatedStorageFile
GetUserStoreForSite()
boolean
IncreaseQuotaTo(long newQuotaSize)
void
MoveDirectory(java.lang.String sourceDirectoryName, java.lang.String destinationDirectoryName)
void
MoveFile(java.lang.String sourceFileName, java.lang.String destinationFileName)
IsolatedStorageFileStream
OpenFile(java.lang.String path, FileMode mode)
IsolatedStorageFileStream
OpenFile(java.lang.String path, FileMode mode, FileAccess access)
IsolatedStorageFileStream
OpenFile(java.lang.String path, FileMode mode, FileAccess access, FileShare share)
void
Remove()
static void
Remove(IsolatedStorageScope scope)
void
setJCOInstance(JCObject instance)
-
Methods inherited from class system.io.isolatedstorage.IsolatedStorage
getApplicationIdentity, getAssemblyIdentity, getAvailableFreeSpace, getCurrentSize, getDomainIdentity, getMaximumSize, getQuota, getScope, getUsedSize, setScope
-
Methods inherited from class system.MarshalByRefObject
GetLifetimeService, InitializeLifetimeService
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.IO.IsolatedStorage, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.IO.IsolatedStorage- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.IO.IsolatedStorage.IsolatedStorageFile- 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 classIsolatedStorage
- 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 classIsolatedStorage
- 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 classIsolatedStorage
- 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 classIsolatedStorage
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classIsolatedStorage
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classIsolatedStorage
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static IsolatedStorageFile cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoIsolatedStorageFile
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
IsolatedStorageFile
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
DirectoryExists
public boolean DirectoryExists(java.lang.String path) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, CultureNotFoundException
-
FileExists
public boolean FileExists(java.lang.String path) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, CultureNotFoundException
-
IncreaseQuotaTo
public boolean IncreaseQuotaTo(long newQuotaSize) throws java.lang.Throwable
- Overrides:
IncreaseQuotaTo
in classIsolatedStorage
- Throws:
java.lang.Throwable
-
GetEnumerator
public static IEnumerator GetEnumerator(IsolatedStorageScope scope) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetCreationTime
public DateTimeOffset GetCreationTime(java.lang.String path) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ObjectDisposedException, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, CultureNotFoundException
-
GetLastAccessTime
public DateTimeOffset GetLastAccessTime(java.lang.String path) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ObjectDisposedException, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, CultureNotFoundException
-
GetLastWriteTime
public DateTimeOffset GetLastWriteTime(java.lang.String path) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ObjectDisposedException, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, CultureNotFoundException
-
GetMachineStoreForApplication
public static IsolatedStorageFile GetMachineStoreForApplication() throws java.lang.Throwable, ArgumentException, InvalidOperationException, PlatformNotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentNullException, ObjectDisposedException, NullReferenceException, NotSupportedException, IsolatedStorageException, UriFormatException, FormatException, WaitHandleCannotBeOpenedException, AbandonedMutexException, OutOfMemoryException, SynchronizationLockException, Win32Exception, ApplicationException
- Throws:
java.lang.Throwable
ArgumentException
InvalidOperationException
PlatformNotSupportedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentNullException
ObjectDisposedException
NullReferenceException
NotSupportedException
IsolatedStorageException
UriFormatException
FormatException
WaitHandleCannotBeOpenedException
AbandonedMutexException
OutOfMemoryException
SynchronizationLockException
Win32Exception
ApplicationException
-
GetMachineStoreForAssembly
public static IsolatedStorageFile GetMachineStoreForAssembly() throws java.lang.Throwable, ArgumentException, InvalidOperationException, PlatformNotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentNullException, ObjectDisposedException, NullReferenceException, NotSupportedException, IsolatedStorageException, UriFormatException, FormatException, WaitHandleCannotBeOpenedException, AbandonedMutexException, OutOfMemoryException, SynchronizationLockException, Win32Exception, ApplicationException
- Throws:
java.lang.Throwable
ArgumentException
InvalidOperationException
PlatformNotSupportedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentNullException
ObjectDisposedException
NullReferenceException
NotSupportedException
IsolatedStorageException
UriFormatException
FormatException
WaitHandleCannotBeOpenedException
AbandonedMutexException
OutOfMemoryException
SynchronizationLockException
Win32Exception
ApplicationException
-
GetMachineStoreForDomain
public static IsolatedStorageFile GetMachineStoreForDomain() throws java.lang.Throwable, ArgumentException, InvalidOperationException, PlatformNotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentNullException, ObjectDisposedException, NullReferenceException, NotSupportedException, IsolatedStorageException, UriFormatException, FormatException, WaitHandleCannotBeOpenedException, AbandonedMutexException, OutOfMemoryException, SynchronizationLockException, Win32Exception, ApplicationException
- Throws:
java.lang.Throwable
ArgumentException
InvalidOperationException
PlatformNotSupportedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentNullException
ObjectDisposedException
NullReferenceException
NotSupportedException
IsolatedStorageException
UriFormatException
FormatException
WaitHandleCannotBeOpenedException
AbandonedMutexException
OutOfMemoryException
SynchronizationLockException
Win32Exception
ApplicationException
-
GetStore
public static IsolatedStorageFile GetStore(IsolatedStorageScope scope, NetObject domainIdentity, NetObject assemblyIdentity) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, IsolatedStorageException, UriFormatException, FormatException, WaitHandleCannotBeOpenedException, AbandonedMutexException, OutOfMemoryException, SynchronizationLockException, Win32Exception, ApplicationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
NotSupportedException
CultureNotFoundException
ObjectDisposedException
InvalidOperationException
IndexOutOfRangeException
IsolatedStorageException
UriFormatException
FormatException
WaitHandleCannotBeOpenedException
AbandonedMutexException
OutOfMemoryException
SynchronizationLockException
Win32Exception
ApplicationException
-
GetStore
public static IsolatedStorageFile GetStore(IsolatedStorageScope scope, NetObject applicationIdentity) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, IsolatedStorageException, UriFormatException, FormatException, WaitHandleCannotBeOpenedException, AbandonedMutexException, OutOfMemoryException, SynchronizationLockException, Win32Exception, ApplicationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
NotSupportedException
CultureNotFoundException
ObjectDisposedException
InvalidOperationException
IndexOutOfRangeException
IsolatedStorageException
UriFormatException
FormatException
WaitHandleCannotBeOpenedException
AbandonedMutexException
OutOfMemoryException
SynchronizationLockException
Win32Exception
ApplicationException
-
GetStore
public static IsolatedStorageFile GetStore(IsolatedStorageScope scope, NetType domainEvidenceType, NetType assemblyEvidenceType) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, IsolatedStorageException, UriFormatException, FormatException, WaitHandleCannotBeOpenedException, AbandonedMutexException, OutOfMemoryException, SynchronizationLockException, Win32Exception, ApplicationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
NotSupportedException
CultureNotFoundException
ObjectDisposedException
InvalidOperationException
IndexOutOfRangeException
IsolatedStorageException
UriFormatException
FormatException
WaitHandleCannotBeOpenedException
AbandonedMutexException
OutOfMemoryException
SynchronizationLockException
Win32Exception
ApplicationException
-
GetStore
public static IsolatedStorageFile GetStore(IsolatedStorageScope scope, NetType applicationEvidenceType) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, IsolatedStorageException, UriFormatException, FormatException, WaitHandleCannotBeOpenedException, AbandonedMutexException, OutOfMemoryException, SynchronizationLockException, Win32Exception, ApplicationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
NotSupportedException
CultureNotFoundException
ObjectDisposedException
InvalidOperationException
IndexOutOfRangeException
IsolatedStorageException
UriFormatException
FormatException
WaitHandleCannotBeOpenedException
AbandonedMutexException
OutOfMemoryException
SynchronizationLockException
Win32Exception
ApplicationException
-
GetUserStoreForApplication
public static IsolatedStorageFile GetUserStoreForApplication() throws java.lang.Throwable, ArgumentException, InvalidOperationException, PlatformNotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentNullException, ObjectDisposedException, NullReferenceException, NotSupportedException, IsolatedStorageException, UriFormatException, FormatException, WaitHandleCannotBeOpenedException, AbandonedMutexException, OutOfMemoryException, SynchronizationLockException, Win32Exception, ApplicationException
- Throws:
java.lang.Throwable
ArgumentException
InvalidOperationException
PlatformNotSupportedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentNullException
ObjectDisposedException
NullReferenceException
NotSupportedException
IsolatedStorageException
UriFormatException
FormatException
WaitHandleCannotBeOpenedException
AbandonedMutexException
OutOfMemoryException
SynchronizationLockException
Win32Exception
ApplicationException
-
GetUserStoreForAssembly
public static IsolatedStorageFile GetUserStoreForAssembly() throws java.lang.Throwable, ArgumentException, InvalidOperationException, PlatformNotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentNullException, ObjectDisposedException, NullReferenceException, NotSupportedException, IsolatedStorageException, UriFormatException, FormatException, WaitHandleCannotBeOpenedException, AbandonedMutexException, OutOfMemoryException, SynchronizationLockException, Win32Exception, ApplicationException
- Throws:
java.lang.Throwable
ArgumentException
InvalidOperationException
PlatformNotSupportedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentNullException
ObjectDisposedException
NullReferenceException
NotSupportedException
IsolatedStorageException
UriFormatException
FormatException
WaitHandleCannotBeOpenedException
AbandonedMutexException
OutOfMemoryException
SynchronizationLockException
Win32Exception
ApplicationException
-
GetUserStoreForDomain
public static IsolatedStorageFile GetUserStoreForDomain() throws java.lang.Throwable, ArgumentException, InvalidOperationException, PlatformNotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentNullException, ObjectDisposedException, NullReferenceException, NotSupportedException, IsolatedStorageException, UriFormatException, FormatException, WaitHandleCannotBeOpenedException, AbandonedMutexException, OutOfMemoryException, SynchronizationLockException, Win32Exception, ApplicationException
- Throws:
java.lang.Throwable
ArgumentException
InvalidOperationException
PlatformNotSupportedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentNullException
ObjectDisposedException
NullReferenceException
NotSupportedException
IsolatedStorageException
UriFormatException
FormatException
WaitHandleCannotBeOpenedException
AbandonedMutexException
OutOfMemoryException
SynchronizationLockException
Win32Exception
ApplicationException
-
GetUserStoreForSite
public static IsolatedStorageFile GetUserStoreForSite() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException
-
CreateFile
public IsolatedStorageFileStream CreateFile(java.lang.String path) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, ObjectDisposedException, IndexOutOfRangeException, IsolatedStorageException, SerializationException
-
OpenFile
public IsolatedStorageFileStream OpenFile(java.lang.String path, FileMode mode, FileAccess access, FileShare share) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, ObjectDisposedException, IndexOutOfRangeException, IsolatedStorageException, SerializationException
-
OpenFile
public IsolatedStorageFileStream OpenFile(java.lang.String path, FileMode mode, FileAccess access) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, ObjectDisposedException, IndexOutOfRangeException, IsolatedStorageException, SerializationException
-
OpenFile
public IsolatedStorageFileStream OpenFile(java.lang.String path, FileMode mode) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, ObjectDisposedException, IndexOutOfRangeException, IsolatedStorageException, OutOfMemoryException, Win32Exception, SerializationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
NotSupportedException
InvalidOperationException
ObjectDisposedException
IndexOutOfRangeException
IsolatedStorageException
OutOfMemoryException
Win32Exception
SerializationException
-
GetDirectoryNames
public java.lang.String[] GetDirectoryNames() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, ObjectDisposedException, IndexOutOfRangeException, PlatformNotSupportedException, OutOfMemoryException, ArrayTypeMismatchException
-
GetDirectoryNames
public java.lang.String[] GetDirectoryNames(java.lang.String searchPattern) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, CultureNotFoundException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
IndexOutOfRangeException
CultureNotFoundException
OutOfMemoryException
-
GetFileNames
public java.lang.String[] GetFileNames() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, ObjectDisposedException, IndexOutOfRangeException, PlatformNotSupportedException, OutOfMemoryException, ArrayTypeMismatchException
-
GetFileNames
public java.lang.String[] GetFileNames(java.lang.String searchPattern) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, CultureNotFoundException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
IndexOutOfRangeException
CultureNotFoundException
OutOfMemoryException
-
Close
public void Close() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, ArgumentException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
-
CopyFile
public void CopyFile(java.lang.String sourceFileName, java.lang.String destinationFileName, boolean overwrite) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ObjectDisposedException, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, CultureNotFoundException, MissingMethodException, TargetInvocationException, IOException, FileNotFoundException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
ArgumentNullException
ObjectDisposedException
IndexOutOfRangeException
PlatformNotSupportedException
ArgumentOutOfRangeException
InvalidOperationException
CultureNotFoundException
MissingMethodException
TargetInvocationException
IOException
FileNotFoundException
-
CopyFile
public void CopyFile(java.lang.String sourceFileName, java.lang.String destinationFileName) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ObjectDisposedException, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, MissingMethodException, TargetInvocationException, IOException, FormatException, FileNotFoundException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
ArgumentNullException
ObjectDisposedException
IndexOutOfRangeException
PlatformNotSupportedException
ArgumentOutOfRangeException
InvalidOperationException
MissingMethodException
TargetInvocationException
IOException
FormatException
FileNotFoundException
-
CreateDirectory
public void CreateDirectory(java.lang.String dir) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, CultureNotFoundException
-
DeleteDirectory
public void DeleteDirectory(java.lang.String dir) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, CultureNotFoundException, IOException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
IndexOutOfRangeException
CultureNotFoundException
IOException
-
DeleteFile
public void DeleteFile(java.lang.String file) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, CultureNotFoundException
-
Dispose
public void Dispose() throws java.lang.Throwable, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
MoveDirectory
public void MoveDirectory(java.lang.String sourceDirectoryName, java.lang.String destinationDirectoryName) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ObjectDisposedException, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, CultureNotFoundException, IOException, DirectoryNotFoundException
-
MoveFile
public void MoveFile(java.lang.String sourceFileName, java.lang.String destinationFileName) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ObjectDisposedException, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, CultureNotFoundException, FileNotFoundException
-
Remove
public void Remove() throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, CultureNotFoundException, IOException, MissingMethodException, TargetInvocationException, IsolatedStorageException, RankException, ArrayTypeMismatchException, InvalidCastException
- Overrides:
Remove
in classIsolatedStorage
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
ArgumentNullException
IndexOutOfRangeException
PlatformNotSupportedException
ArgumentOutOfRangeException
InvalidOperationException
CultureNotFoundException
IOException
MissingMethodException
TargetInvocationException
IsolatedStorageException
RankException
ArrayTypeMismatchException
InvalidCastException
-
Remove
public static void Remove(IsolatedStorageScope scope) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, ObjectDisposedException, OverflowException, IndexOutOfRangeException, FormatException, RankException, ArrayTypeMismatchException, OutOfMemoryException, MissingMethodException, TargetInvocationException, WaitHandleCannotBeOpenedException, AbandonedMutexException, IsolatedStorageException, LockRecursionException, SynchronizationLockException, Win32Exception, PrivilegeNotHeldException, UnauthorizedAccessException, ApplicationException, IOException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
NotSupportedException
InvalidOperationException
ObjectDisposedException
OverflowException
IndexOutOfRangeException
FormatException
RankException
ArrayTypeMismatchException
OutOfMemoryException
MissingMethodException
TargetInvocationException
WaitHandleCannotBeOpenedException
AbandonedMutexException
IsolatedStorageException
LockRecursionException
SynchronizationLockException
Win32Exception
PrivilegeNotHeldException
UnauthorizedAccessException
ApplicationException
IOException
-
close
public void close() throws java.lang.Exception
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Throws:
java.lang.Exception
-
getIsEnabled
public static boolean getIsEnabled() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-