问题标签 [file-exists]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
9 回答
521507 浏览

vba - 在 VBA 中删除文件

使用 VBA,我该如何:

  1. 测试文件是否存在,如果存在,
  2. 删除它?
0 投票
42 回答
4760340 浏览

python - 如何检查文件是否存在无异常?

如何在不使用try语句的情况下检查文件是否存在?

0 投票
12 回答
120659 浏览

c# - 在 C# 中验证文件是否存在

我正在开发一个应用程序。该应用程序应该从用户那里获得简历,因此我需要一个代码来验证文件是否存在。

我正在使用 ASP.NET / C#。

0 投票
2 回答
2603 浏览

php - 为什么 file_exists() 不起作用?

这是我的PHP代码:

它说该文件不存在,但实际上它确实存在:

似乎确实是报价问题:

现在通过使用以下转换器修复:

让它在 bash 中工作!

0 投票
7 回答
101090 浏览

php - PHP's file_exists() will not work for me?

For some reason this PHP code below will not work, I can not figure it out.

It is very strange, file_exists does not seem to see that the image does exist, I have checked to make sure a good file path is being inserted into the file_exists function and it is still acting up

If I change file_exists to !file_exists it will return an images that exist and ones that do not exist

0 投票
5 回答
4650 浏览

php - file_exists() 用于文件名中包含 (&) 的文件

如果文件名有“ &” PHP 不返回 truefile_exists

我怎样才能&在 $filename 中转义“”file_exists才能正常工作?

已经尝试过urlecode(), urlrawencode(), htmlentities(), 并使用反斜杠 (\&) 转义“&”...不行

附言。这是在运行 RedHat5 的 linux 系统上

提前致谢

0 投票
20 回答
36968 浏览

php - file_exists() 在 PHP 中太慢了。任何人都可以提出更快的替代方案吗?

在我们的网站上显示图像时,我们会通过调用来检查文件是否存在file_exists()。如果文件丢失,我们会退回到虚拟图像。

然而,分析表明这是生成页面最慢的部分,每个文件file_exists()最多需要1/2 毫秒。我们只测试了 40 个左右的文件,但这仍然会在页面加载时间上增加 20毫秒。

任何人都可以提出一种使这更快的方法吗?有没有更好的方法来测试文件是否存在?如果我建立某种缓存,我应该如何保持同步。

0 投票
7 回答
6597 浏览

php - PHP 文件存在总是错误的

我有一个 file_exists() 总是返回 false 的情况。我最近的尝试是测试它是否会为 $_SERVER["SCRIPT_FILENAME"] 返回 true,然后如果找不到它所找到的文件,则返回路径的值。

与解决问题不一定相关的路径是:/Users/joe/Workspace/720/app/webroot/index.php

我显然已经验证了该文件在那里,甚至不确定它是如何不存在的,因为 php 正在为它提供服务。

我应该提到这是在运行 PHP 5.3.0 的 OS X Snow Leopard 上安装的。

任何想法都会很棒。

代码示例:

0 投票
17 回答
1292645 浏览

java - 如何检查文件是否存在于 Java 中?

如何在打开文件以在Java中读取之前检查文件是否存在(相当于Perl 的 -e $filename)?

关于 SO的唯一类似问题涉及编写文件,因此使用FileWriter这显然不适用于此处回答。

如果可能的话,我更喜欢返回 true/false 的真正API调用,而不是一些“调用 API 来打开文件并在它引发异常时捕获,您在文本中检查‘无文件’”,但我可以忍受后者。

0 投票
2 回答
405 浏览

php - file_exist() php 函数会导致服务器负载高吗?

我正在尝试检查用户是否上传了他或她的头像图像,并且我使用 file_exist() php 函数来检查用户头像图像是否存在

这会导致大量流量网站出现任何服务器负载问题吗?

谢谢