×
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.
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 / \
--------------------------------------------------------------------
As an Amazon Associate we earn from qualifying purchases.