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

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

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

POSIX.lchmod介绍

暂无

代码示例

代码示例来源:origin: com.cloudbees.util/jnr-unixsocket-nodep

  1. public int lchmod(String filename, int mode) {
  2. return posix().lchmod(filename, mode);
  3. }

代码示例来源:origin: com.cloudbees.util/jnr-unixsocket-nodep

  1. public int lchmod(String filename, int mode) {
  2. try { return posix.lchmod(filename, mode); } catch (UnsatisfiedLinkError ule) { return unimplementedInt(); }
  3. }

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

  1. public int lchmod(String filename, int mode) {
  2. return posix().lchmod(filename, mode);
  3. }

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

  1. public int lchmod(String filename, int mode) {
  2. try { return posix.lchmod(filename, mode); } catch (UnsatisfiedLinkError ule) { return unimplementedInt(); }
  3. }

代码示例来源:origin: com.facebook.presto.cassandra/cassandra-driver

  1. public int lchmod(String filename, int mode) {
  2. try { return posix.lchmod(filename, mode); } catch (UnsatisfiedLinkError ule) { return unimplementedInt(); }
  3. }

代码示例来源:origin: com.facebook.presto.cassandra/cassandra-driver

  1. public int lchmod(String filename, int mode) {
  2. return posix().lchmod(filename, mode);
  3. }

代码示例来源:origin: io.prestosql.cassandra/cassandra-driver

  1. public int lchmod(String filename, int mode) {
  2. try { return posix.lchmod(filename, mode); } catch (UnsatisfiedLinkError ule) { return unimplementedInt(); }
  3. }

代码示例来源:origin: io.prestosql.cassandra/cassandra-driver

  1. public int lchmod(String filename, int mode) {
  2. return posix().lchmod(filename, mode);
  3. }

代码示例来源:origin: org.python/jython

  1. @Hide(value=OS.NT, posixImpl = PosixImpl.JAVA)
  2. public static void lchmod(PyObject path, int mode) {
  3. if (posix.lchmod(absolutePath(path).toString(), mode) < 0) {
  4. throw errorFromErrno(path);
  5. }
  6. }

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-jruby

  1. @JRubyMethod(required = 1)
  2. public IRubyObject lchmod(ThreadContext context, IRubyObject arg) {
  3. int mode = (int) arg.convertToInteger().getLongValue();
  4. if (!new File(path).exists()) {
  5. throw context.runtime.newErrnoENOENTError(path);
  6. }
  7. return context.runtime.newFixnum(context.runtime.getPosix().lchmod(path, mode));
  8. }

代码示例来源:origin: org.kill-bill.billing/killbill-osgi-bundles-jruby

  1. @JRubyMethod(required = 1)
  2. public IRubyObject lchmod(ThreadContext context, IRubyObject arg) {
  3. int mode = (int) arg.convertToInteger().getLongValue();
  4. if (!new File(path).exists()) {
  5. throw context.runtime.newErrnoENOENTError(path);
  6. }
  7. return context.runtime.newFixnum(context.runtime.getPosix().lchmod(path, mode));
  8. }

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

  1. @JRubyMethod(required = 1, rest = true, meta = true)
  2. public static IRubyObject lchmod(ThreadContext context, IRubyObject recv, IRubyObject[] args) {
  3. Ruby runtime = context.runtime;
  4. int count = 0;
  5. RubyInteger mode = args[0].convertToInteger();
  6. for (int i = 1; i < args.length; i++) {
  7. JRubyFile file = file(args[i]);
  8. if (0 != runtime.getPosix().lchmod(file.toString(), (int) mode.getLongValue())) {
  9. throw runtime.newErrnoFromLastPOSIXErrno();
  10. } else {
  11. count++;
  12. }
  13. }
  14. return runtime.newFixnum(count);
  15. }

代码示例来源:origin: org.kill-bill.billing/killbill-osgi-bundles-jruby

  1. @JRubyMethod(required = 1, rest = true, meta = true)
  2. public static IRubyObject lchmod(ThreadContext context, IRubyObject recv, IRubyObject[] args) {
  3. Ruby runtime = context.runtime;
  4. int count = 0;
  5. RubyInteger mode = args[0].convertToInteger();
  6. for (int i = 1; i < args.length; i++) {
  7. JRubyFile file = file(args[i]);
  8. if (0 != runtime.getPosix().lchmod(file.toString(), (int)mode.getLongValue())) {
  9. throw runtime.newErrnoFromLastPOSIXErrno();
  10. } else {
  11. count++;
  12. }
  13. }
  14. return runtime.newFixnum(count);
  15. }

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-jruby

  1. @JRubyMethod(required = 1, rest = true, meta = true)
  2. public static IRubyObject lchmod(ThreadContext context, IRubyObject recv, IRubyObject[] args) {
  3. Ruby runtime = context.runtime;
  4. int count = 0;
  5. RubyInteger mode = args[0].convertToInteger();
  6. for (int i = 1; i < args.length; i++) {
  7. JRubyFile file = file(args[i]);
  8. if (0 != runtime.getPosix().lchmod(file.toString(), (int)mode.getLongValue())) {
  9. throw runtime.newErrnoFromLastPOSIXErrno();
  10. } else {
  11. count++;
  12. }
  13. }
  14. return runtime.newFixnum(count);
  15. }

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

  1. @JRubyMethod(required = 1, rest = true, meta = true)
  2. public static IRubyObject lchmod(ThreadContext context, IRubyObject recv, IRubyObject[] args) {
  3. Ruby runtime = context.runtime;
  4. int count = 0;
  5. RubyInteger mode = args[0].convertToInteger();
  6. for (int i = 1; i < args.length; i++) {
  7. JRubyFile file = file(args[i]);
  8. if (0 != runtime.getPosix().lchmod(file.toString(), (int) mode.getLongValue())) {
  9. throw runtime.newErrnoFromLastPOSIXErrno();
  10. } else {
  11. count++;
  12. }
  13. }
  14. return runtime.newFixnum(count);
  15. }

相关文章

POSIX类方法