|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-02-03 10:45 UTC] loke at xstream dot dk
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 15 20:00:02 2025 UTC |
Description: ------------ I am trying to access files on a network path like \\10.1.2.3\storage\folder1\movies\test.mp4 More precisely i am trying to ftp_put this file. This does not seem to work, and when i test using file_exists() on the file it also returns false. This is odd however since i can easily access it using "Run" in windows. And i have a C# based service which also can readily access it, and even when the php is executed from the C# service (thereby using the same credentials) it fails. Reproduce code: --------------- <?php var_dump(file_exists("\\10.1.2.3\storage\folder1\movies\test.mp4")); ?> Expected result: ---------------- bool(true) Actual result: -------------- bool(false)