|
It would send shivers through our windows admins to ask them to install an add on for fear of making the server unstable.
-----Original Message-----
From: midrange-l-bounces@xxxxxxxxxxxx [mailto:midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of Simon Coulter
Sent: Monday, August 09, 2010 8:06 PM
To: Midrange Systems Technical Discussion
Subject: Re: Checking file existence on windows server
On 09/08/2010, at 11:26 PM, Mike Cunningham wrote:
Can anyone give me an idea of the best, most reliable, way (if it is
even possible) to check to see if a file exists on a Windows server
from an iSeries RPG (or CL) application? I want to try and condition
an action in an RPG application based on a picture files existing or
not existing on the windows server. My only thought is to create an
IFS directory and FTP all the files from the server directory to the
IFS and then check to see if an IFS file exists using CHKIFSOBJ
You could do this with SMB/CIFS via the QNTC file system but, as I've
said on numerous occasions, QNTC and NetServer are woefully pathetic
implementations of SMB/CIFS.
Use Network File System (NFS) support instead. WinDOS supports this
via an optionally installable (free) set of tools called Unix tools
(or Unix support) or something similar. They will be on your
distribution media as long as you have something better than the
crappy home versions. Install the NFS server on WinDOS and configure
it to export the directory in question.
Start NFS on OS/400 and mount the exported share. Create a separate
mount point for this:
MKDIR '/mount'
MKDIR '/mount/windos-dir-name'
MOUNT TYPE(*NFS) MFS('windos-dir-path') MNTOVRDIR('/mount/windos-dir-
name') ...
See previous e-mail from me on this list on 26th July showing more
information.
Once successfully mounted I think you should be able to use the
access() API to check for existence.
Regards,
Simon Coulter.
--------------------------------------------------------------------
FlyByNight Software OS/400, i5/OS Technical Specialists
http://www.flybynight.com.au/
Phone: +61 2 6657 8251 Mobile: +61 0411 091 400 /"\
Fax: +61 2 6657 8251 \ /
X
ASCII Ribbon campaign against HTML E-Mail / \
--------------------------------------------------------------------
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.
As an Amazon Associate we earn from qualifying purchases.
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.