本文整理了Java中jnr.posix.POSIX.lutimes()
方法的一些代码示例,展示了POSIX.lutimes()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。POSIX.lutimes()
方法的具体详情如下:
包路径:jnr.posix.POSIX
类名称: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);
}
内容来源于网络,如有侵权,请联系作者删除!