Files
FastGPT/packages/global/common/file/utils.ts
Archer 9d72f238c0 fix: csv check (#6044)
* fix: csv check

* fix: template

* Update packages/global/common/file/utils.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-12-07 15:02:36 +08:00

7 lines
167 B
TypeScript

import path from 'path';
export const isCSVFile = (filename: string) => {
const extension = path.extname(filename).toLowerCase();
return extension === '.csv';
};