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

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

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

POSIX.getcwd介绍

暂无

代码示例

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

public String getcwd() {
  return posix().getcwd();
}

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

public String getcwd() {
  return posix().getcwd();
}

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

public String getcwd() {
  try {return posix.getcwd(); } catch (UnsatisfiedLinkError ule) { return unimplementedString(); }
}

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

public String getcwd() {
  try {return posix.getcwd(); } catch (UnsatisfiedLinkError ule) { return unimplementedString(); }
}

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

public String getcwd() {
  try {return posix.getcwd(); } catch (UnsatisfiedLinkError ule) { return unimplementedString(); }
}

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

public String getcwd() {
  return posix().getcwd();
}

代码示例来源:origin: jerlang/jerlang

/**
 * http://www.erlang.org/doc/man/file.html#get_cwd-0
 */
public static Term get_cwd_0() {
  return Tuple.of(ok, Str.of(posix.getcwd()));
}

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

if (!runtime.getCurrentDirectory().equals(runtime.getPosix().getcwd())) {
  String arg = prog.toString();
  if ((arg = ShellLauncher.changeDirInsideJar(runtime, arg)) != null) {

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

if (!runtime.getCurrentDirectory().equals(runtime.getPosix().getcwd())) {
  String arg = prog.toString();
  if ((arg = ShellLauncher.changeDirInsideJar(runtime, arg)) != null) {

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

@JRubyMethod(name = "system", required = 1, rest = true, module = true, visibility = PRIVATE)
public static IRubyObject system(ThreadContext context, IRubyObject recv, IRubyObject[] args) {
  final Ruby runtime = context.runtime;
  boolean needChdir = !runtime.getCurrentDirectory().equals(runtime.getPosix().getcwd());

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

@JRubyMethod(name = "system", required = 1, rest = true, module = true, visibility = PRIVATE)
public static IRubyObject system(ThreadContext context, IRubyObject recv, IRubyObject[] args) {
  final Ruby runtime = context.runtime;
  boolean needChdir = !runtime.getCurrentDirectory().equals(runtime.getPosix().getcwd());

相关文章

POSIX类方法