The only difference between miniperl and perl is that miniperl cannot load XS-based perl modules as shared objects. So it can't load WIN32 or CWD modules.
Is it possible to get Current Working Directory in miniperl?
Yes, it's possible using the following:
chomp( my $cwd = `cd` );
Yes, it's possible using the following: