Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的问题是,我如何确保不上传黑莓服务器上已有的任何文件。任何想法将不胜感激。提前致谢。
在这里,您必须在服务器端进行检查。如果文件不存在,那么它将上传,否则将显示警报消息。
对于 PHP,您可以使用以下代码。
<?php if (file_exists("http://www.example.com/abc.jpg")) echo "File Exists"; // Upload the file else echo "File does not Exists"; //show Alert Message ?>