Skip to content

ZosPdsMember

The ZosPdsMember object represents a member of a partitioned data set (PDS or PDSE). This object can be obtained using the GetMember or GetMembers methods of ZosDataSet. It can also be obtained using the GetComponent or GetComponents methods of ZosBaselineLibrary.

ZosPdsMember Properties

ZosPdsMember exposes the following properties:

Property Type R/W Description
Name String R File name for member, including file extension
Path String R Full file system path name of the member.
MemberName String R Member name
CreationDate DateTime R Date member was created
LastWriteTime DateTime R Date and time member was last updated
CurrentLines Int32 R Current number of lines.
InitialLines Int32 R Initial number of lines.
Version Int16 R Version number.
ModLevel Int16 R Modification level.
User String R User ID who last updated the member.

...

ZosPdsMember Methods

ZosPdsMember exposes the following methods:

Delete Method

Deletes the member.

void  Delete()                    

Refresh Method

Refreshes the member information.

void  Refresh()

Rename Method

Renames the member.

void  Rename(  String newName  )                

...

Back to top