Skip to content

Instantly share code, notes, and snippets.

@hmowais
Created December 11, 2019 18:00
Show Gist options
  • Save hmowais/bc192d4d058feb00e4193d34b0890a75 to your computer and use it in GitHub Desktop.
Save hmowais/bc192d4d058feb00e4193d34b0890a75 to your computer and use it in GitHub Desktop.
file exist in WordPress upload Folder
<?php
global $product;
$upload_dir = wp_upload_dir();
$file_location = $upload_dir['basedir'].'/'."acf_attached_file".'/'.$product->get_slug().'.pdf';
if(file_exists($file_location)) {
echo "file exist";
}
else {
echo "not exist";
}
//or
if(file_exists($file_location)) :
echo "file exist";
else :
echo "not exist";
endif;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment