QuickOPC User's Guide and Reference
Rename Method (IWritableDirectoryContentsExtension)



OpcLabs.BaseLib Assembly > OpcLabs.BaseLib.Extensions.FileProviders Namespace > IWritableDirectoryContentsExtension Class : Rename Method
The writable directory contents object that will perform the operation.
New name for directory.
Renames a directory.
Syntax
'Declaration
 
<ExtensionAttribute()>
<NotNullAttribute()>
Public Shared Function Rename( _
   ByVal writableDirectoryContents As IWritableDirectoryContents, _
   ByVal newDirectoryName As String _
) As IWritableDirectoryContents
'Usage
 
Dim writableDirectoryContents As IWritableDirectoryContents
Dim newDirectoryName As String
Dim value As IWritableDirectoryContents
 
value = IWritableDirectoryContentsExtension.Rename(writableDirectoryContents, newDirectoryName)

Parameters

writableDirectoryContents
The writable directory contents object that will perform the operation.
newDirectoryName
New name for directory.

Return Value

Returns the writable directory contents for the renamed file.
Exceptions
ExceptionDescription

One of the arguments provided to a method is not valid.

This is a usage error, i.e. it will never occur (the exception will not be thrown) in a correctly written program. Your code should not catch this exception.

A null reference (Nothing in Visual Basic) is passed to a method that does not accept it as a valid argument.

This is a usage error, i.e. it will never occur (the exception will not be thrown) in a correctly written program. Your code should not catch this exception.

Part of a file or directory cannot be found.

This is an operation error that depends on factors external to your program, and thus cannot be always avoided. Your code must handle it appropriately.

An I/O error has occurred.

This is an operation error that depends on factors external to your program, and thus cannot be always avoided. Your code must handle it appropriately.

An invoked method is not supported at all, or is not supported with the parameters used to create the object.

A security error was detected.

This is an operation error that depends on factors external to your program, and thus cannot be always avoided. Your code must handle it appropriately.

Remarks

This method cannot be used to move a directory; use the IWritableDirectoryContents.MoveTo method to move and rename the directory.

The original writable directory contents is (in general case) invalid after the rename. Use the writeable directory contents returned by the method to continue operations on the same directory.

Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also