ReadWriteFileSystemProvider.SetTimeInfo Method
Namespace: Rebex.IO.FileSystem
Assembly: Rebex.FileSystem.dll (version 7.0.9147)
SetTimeInfo(NodeBase, NodeTimeInfo)
Override this method to implement time info updating functionality for File
When the virtual file system is used in the FileServer component, the server session, which contains information about the user and the active connection, can be accessed using Current property.
Declaration
protected abstract NodeBase SetTimeInfo(NodeBase node, NodeTimeInfo newTimeInfo)
Parameters
Type | Name | Description |
---|---|---|
Node |
node | To be updated a File |
Node |
newTimeInfo | Updated Node |
Returns
Type | Description |
---|---|
Node |
Up-to-date instance of Directory |
Examples
protected override NodeBase SetTimeInfo(NodeBase node, NodeTimeInfo newTimeInfo)
{
var fullNodePath = getFullPath(node.Path);
var retNode = node;
if (node.IsFile)
{
File.SetCreationTimeUtc(fullNodePath, newTimeInfo.CreationTime);
File.SetLastAccessTimeUtc(fullNodePath, newTimeInfo.LastAccessTime);
File.SetLastWriteTimeUtc(fullNodePath, newTimeInfo.LastWriteTime);
retNode = new FileNode(node.Name, node.Parent, newTimeInfo, node.Attributes);
}
if (node.IsDirectory)
{
Directory.SetCreationTimeUtc(fullNodePath, newTimeInfo.CreationTime);
Directory.SetLastAccessTimeUtc(fullNodePath, newTimeInfo.LastAccessTime);
Directory.SetLastWriteTimeUtc(fullNodePath, newTimeInfo.LastWriteTime);
retNode = new DirectoryNode(node.Name, node.Parent, newTimeInfo, node.Attributes);
}
return retNode;
}