Home > Q&A > body text
if (!-e $request_filename) {
}
What does the -e mean here? Can this master explain it?
心有萌虎2018-02-21 17:23:33
-e and !-e are used to determine whether a file or directory exists.
Search if (!-e $request_filename) This can find what you need