字符串(URL 、路径或文件名)。
可选。如果为 true,则返回包含文件扩展名的完整文件名,若无扩展名则使用 .unknown
。
getFileNameFromStr('https://example.com/path/to/file.jpg'); // 'file'
getFileNameFromStr('https://example.com/path/to/file.jpg', true); // 'file.jpg'
getFileNameFromStr('https://example.com/path/to/file'); // 'file'
getFileNameFromStr('https://example.com/path/to/file', true); // 'file.unknown'
getFileNameFromStr('/path/to/file.jpg'); // 'file'
getFileNameFromStr('simple-file.png'); // 'simple-file'
getFileNameFromStr('https://example.com/'); // '1691830390281' (假设当前时间为 1691830390281)
根据字符串获取文件名(支持 URL 或其他路径字符串)。
keepExt
为true
,默认使用.unknown
。