是否有可能在 miniperl(不是 PERL)中获取当前工作目录?

Is it possible to get Current Working Directory in miniperl (NOT PERL)?

miniperl 和 perl 的唯一区别是 miniperl 不能加载基于 XS 的 perl 模块作为共享对象。所以它不能加载WIN32或CWD模块。

是否可以在 miniperl 中获取当前工作目录?

是的,可以使用以下方法:

chomp( my $cwd = `cd` );