× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Steve,
Some years ago we created a Deliete IFS file utility using Scott's DELTREE example.

The sub procedure that returns the date value takes an input parameter that indicates if
the file Create, Modify, or Access date should be returned, the IFS file path and returns a unix timestamp.

Here is the RPGLE code for that sub-routine:

*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
* This gets the create/modify/access timestamp from an
* IFS object.
*
* path = (input) IFS pathname (globalized)
* datetype = (input) type of date, this should be one of
* the following:
* QP0L_ATTR_CREATE_TIME
* QP0L_ATTR_MODIFY_TIME
* QP0L_ATTR_ACCESS_TIME
* unixtime = (output) the unix timestamp corresponding
* to the datetype.
*
* returns *ON if successful
* or *OFF (with errno set) otherwise
*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
P GetDate B
Here is the RPGLE code:
P GetDate B
D GetDate PI 1N
D path like(Qlg_Path_Name_t)
D datetype 10I 0 value
D unixtime 10U 0

D reqattr ds likeds(Qp0l_AttrTypes_List_t)
D attr ds likeds(Qp0l_Attr_Header_t)
D based(p_Attr)

D buf s 5000A
D need s 10U 0
D rtn s 10U 0

/free

// --------------------------------------------------
// Request the IFS file's date
reqattr.Number_Of_ReqAttrs = 1;
reqattr.attrTypes(1) = datetype;

rc = Qp0lGetAttr( path
: reqattr
: %addr(buf)
: %size(buf)
: need
: rtn
: 0 );
if (rc = -1);
ReportError('*DIAG');
return *OFF;
endif;

// --------------------------------------------------
// Parse attributes for the date
unixtime = *hival;
p_Attr = %addr(Buf);

dow (p_Attr <> *NULL);

if attr.Attr_ID = datetype;
unixtime = Attr.UnsData;
endif;

if (Attr.Next_Attr_Offset = 0);
p_Attr = *NULL;
else;
p_Attr = %addr(buf) + Attr.Next_Attr_Offset;
endif;

enddo;

return *ON;
/end-free
P E



-----Original Message-----
From: RPG400-L [mailto:rpg400-l-bounces@xxxxxxxxxxxx] On Behalf Of Steve Jones
Sent: Monday, March 30, 2015 6:47 AM
To: rpg400-l@xxxxxxxxxxxx
Subject: unlink IFS objects

I would like to have a program that will unlink IFS objects based on the date the object was created or last modified. Using Scotts IFS API's, p_statds = %addr(mystat); I can retrieve some stats on the files, but I only see times listed.

Can I get a date somehow that I can then use to determine if I want to keep it/unlink it?

TIA

--
Steve Jones
H-P Products, Inc
330-871-2054

--
NOTE: The information in this email is confidential and may be legally privileged. If you are not the intended recipient, you must not read, use or disseminate the information; please advise the sender immediately by reply email and delete this message and any attachments without retaining a copy. Although this email and any attachments are believed to be free of any virus or other defect that may affect any computer system into which it is received and opened, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by H-P Products, Inc. for any loss or damage arising in any way from its use.
--
This is the RPG programming on the IBM i (AS/400 and iSeries) (RPG400-L) mailing list To post a message email: RPG400-L@xxxxxxxxxxxx To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives at http://archive.midrange.com/rpg400-l.


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.