Package com.ibm.as400.access

Examples of com.ibm.as400.access.IFSFile.createNewFile()


          IFSFileInputStream.SHARE_NONE);

      IFSFile targetFile = new IFSFile(as400System, targetName);
      if (!targetFile.exists())
      {
        targetFile.createNewFile();
      } // if (!targetFile.exists())

      // Open the target file for exclusive access.
      target = new IFSFileOutputStream(as400System, targetName,
          IFSFileOutputStream.SHARE_NONE, false);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.