IFS

From MidrangeWiki
Revision as of 16:47, 17 April 2014 by Starbuck5250 (talk | contribs) (File locks: +Carsten's WRKIFSLCK)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

IFS is an acronym for Integrated File System. It is a hierarchical file system available on IBM i that is very similar to a Unix file system.

The IFS can be accessed from

Java applications are stored in, and executed from, the IFS. The IFS is also used extensively for HTTP servers.

File locks

IBM i does not have a native CL command to display what jobs have a lock on an IFS file, like QSYS.LIB has with WRKOBJOCK. But there are several ways to discover this.

  • Navigator for i has a graphical display of jobs locking a given IFS file.
  • System API QP0LROR (Retrieve Object References).
  • System API QP0FPTOS (Perform Miscellaneous File System Functions):
   CALL QP0FPTOS PARM(*LSTOBJREF '/dir1/dir2/file.log' *FORMAT2) - creates spooled file.  Requires *SERVICE

See also

Categories