jnr.posix.POSIX.lutimes()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(2.6k)|赞(0)|评价(0)|浏览(142)

本文整理了Java中jnr.posix.POSIX.lutimes()方法的一些代码示例,展示了POSIX.lutimes()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。POSIX.lutimes()方法的具体详情如下:
包路径:jnr.posix.POSIX
类名称:POSIX
方法名:lutimes

POSIX.lutimes介绍

暂无

代码示例

代码示例来源:origin: stephenh/mirror

@VisibleForTesting
public static void setModifiedTimeForSymlink(Path absolutePath, long millis) throws IOException {
 long[] modTime = millisToTimeStructArray(millis);
 int r = posix.lutimes(absolutePath.toString(), modTime, modTime);
 if (r != 0) {
  throw new IOException("lutimes failed with code " + r);
 }
}

代码示例来源:origin: com.github.jnr/jnr-posix

public int lutimes(String path, long[] atimeval, long[] mtimeval) {
  try { return posix.lutimes(path, atimeval, mtimeval); } catch (UnsatisfiedLinkError ule) { return unimplementedInt(); }
}

代码示例来源:origin: com.github.jnr/jnr-posix

public int lutimes(String path, long[] atimeval, long[] mtimeval) {
  return posix().lutimes(path, atimeval, mtimeval);
}

代码示例来源:origin: org.jruby/jruby-complete

@JRubyMethod(required = 2, rest = true, meta = true)
public static IRubyObject lutime(ThreadContext context, IRubyObject recv, IRubyObject[] args) {
  Ruby runtime = context.runtime;
  long[] atimeval = null;
  long[] mtimeval = null;
  if (args[0] != context.nil || args[1] != context.nil) {
    atimeval = extractTimespec(context, args[0]);
    mtimeval = extractTimespec(context, args[1]);
  }
  for (int i = 2, j = args.length; i < j; i++) {
    RubyString filename = StringSupport.checkEmbeddedNulls(runtime, get_path(context, args[i]));
    JRubyFile fileToTouch = JRubyFile.create(runtime.getCurrentDirectory(), filename.getUnicodeValue());
    if (!fileToTouch.exists()) {
      throw runtime.newErrnoENOENTError(filename.toString());
    }
    int result = runtime.getPosix().lutimes(fileToTouch.getAbsolutePath(), atimeval, mtimeval);
    if (result == -1) {
      throw runtime.newErrnoFromInt(runtime.getPosix().errno());
    }
  }
  return runtime.newFixnum(args.length - 2);
}

代码示例来源:origin: org.jruby/jruby-core

@JRubyMethod(required = 2, rest = true, meta = true)
public static IRubyObject lutime(ThreadContext context, IRubyObject recv, IRubyObject[] args) {
  Ruby runtime = context.runtime;
  long[] atimeval = null;
  long[] mtimeval = null;
  if (args[0] != context.nil || args[1] != context.nil) {
    atimeval = extractTimespec(context, args[0]);
    mtimeval = extractTimespec(context, args[1]);
  }
  for (int i = 2, j = args.length; i < j; i++) {
    RubyString filename = StringSupport.checkEmbeddedNulls(runtime, get_path(context, args[i]));
    JRubyFile fileToTouch = JRubyFile.create(runtime.getCurrentDirectory(), filename.getUnicodeValue());
    if (!fileToTouch.exists()) {
      throw runtime.newErrnoENOENTError(filename.toString());
    }
    int result = runtime.getPosix().lutimes(fileToTouch.getAbsolutePath(), atimeval, mtimeval);
    if (result == -1) {
      throw runtime.newErrnoFromInt(runtime.getPosix().errno());
    }
  }
  return runtime.newFixnum(args.length - 2);
}

相关文章

POSIX类方法