dirchooser.php 211 B

1234567891011
  1. <?php
  2. if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
  3. echo trim(shell_exec("dirchoser.bat"))."\\";
  4. } else {
  5. echo trim(shell_exec("zenity --file-selection --directory --display=:0"))."/";
  6. }
  7. ?>