选择“无效”文件扩展名
Posted
技术标签:
【中文标题】选择“无效”文件扩展名【英文标题】:select "non valid" file extensions 【发布时间】:2018-11-05 11:15:50 【问题描述】:使用 Advantage Arc 尝试从没有有效文件扩展名的表中获取文件列表。我想查找不包含“。”的任何内容。在名称中,我可以这样做:
select *
from filelist
where filename not like '%.%';
我现在想扩展它,这样我就可以选择任何带有“.”,但后面没有 3 或 4 个字符的东西,因此希望能选择其他无效的扩展。
【问题讨论】:
【参考方案1】:你可以这样做:
select *
from filelist
where filename not like '%.____' and
filename not like '%.___'
【讨论】:
以上是关于选择“无效”文件扩展名的主要内容,如果未能解决你的问题,请参考以下文章
PHPExcel 文件无法打开文件,因为文件格式或文件扩展名无效