cltn77 Posted April 15, 2009 Share Posted April 15, 2009 I had problem to check file exists or not at mapping drive. Below is my coding: $filename = "p:\myfolder\Feb2008.pdf"; if (file_exists($filename)) { echo "The file $filename exists"; } else { echo "The file $filename does not exist"; } The output is The file p:\myfolder\Feb2008.pdf does not exist Any suggestion? TQ Quote Link to comment https://forums.phpfreaks.com/topic/154146-check-file-exists-at-mapping-drive/ Share on other sites More sharing options...
MasterACE14 Posted April 15, 2009 Share Posted April 15, 2009 does it exist? and you might have to change the back slashes to forward slashes. depends on your Operating System I believe. Quote Link to comment https://forums.phpfreaks.com/topic/154146-check-file-exists-at-mapping-drive/#findComment-810316 Share on other sites More sharing options...
WolfRage Posted April 15, 2009 Share Posted April 15, 2009 Use realpath() and it will convert the file location to the correct structure based on the operating system. Quote Link to comment https://forums.phpfreaks.com/topic/154146-check-file-exists-at-mapping-drive/#findComment-810368 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.