Features:
Contains all the information about the Entry objects in a NetWare file system.
Created based on the full name of a file or directory.
Returns the extension of a file.
Object.Extension
String.
Read-only.
See sample in Example.
Returns the name of a file or directory minus its extension.
Object.Name
String.
Read-only.
Returns the full path of the file or directory.
Object.Path
String.
Read-only.
See sample in Example.
Returns the name of the server in which the volume resides.
Object.Server
String.
Read-only.
See sample in Example.
Returns the name of the volume in which the file resides.
Object.Volume
String.
Read-only.
This example returns the volume name, server name, path, name and extension of the file jetson.bas.
Set filemgr = Createobject("ucx:NWFileMgr")
Set pObj = filemgr.Parse("Sys:NSN\util\jetson.bas")
Print(pObj.Volume)
Print(pObj.Server)
Print(pObj.Path)
Print(pObj.Name)
Print(pObj.Extension)