Contact: aviboots(AT)netvision.net.il
39,907 questions
51,839 answers
573 users
if (is_file('d://counter.js')) echo "regular file"; else echo "not regular file"; /* run: regular file */
if (is_file('d://data.txt')) echo "regular file"; else echo "not regular file"; /* run: regular file */
if (is_file('d://CSharpCrawler.exe')) echo "regular file"; else echo "not regular file"; /* run: regular file */
if (is_file('d://development - source//')) echo "regular file"; else echo "not regular file"; /* run: not regular file */