The idea and implementation of getting the file suffix name in javascript_javascript skills
WBOY
Release: 2016-05-16 17:29:16
Original
1257 people have browsed it
For a file name with an absolute path, such as: D:Program FilesNotepad Notepad .exe First of all, in order to avoid problems with escaping backslashes, you can use regular expressions to replace or with #, such as: D: #Program Files#Notepad #Notepad .exe After that, use '#' as the delimiter to decompose the string into an array and get the following array: D: ProgramFiles Notepad Notepad .exe Get the last one of the array That is the file name with the suffix: Notepad .exe and then use '.' as the delimiter to decompose the file name with the suffix into an array, and get the following array: Notepad exe and then take the array The last one can get the file suffix exe The code is as follows (Win7 IE9 test passed):
function Test() { var filePath="D:\Program Files\Notepad \Notepad .exe"; alert(GetExtensionFileName(filePath)); }
function Test() { var filePath="D:\Program Files\ Notepad \Notepad .exe"; alert(GetExtensionFileName(filePath)); }
Click the Test button to pop up a dialog box with exe content, indicating that GetExtensionFileName can correctly parse the file name with an absolute path and obtain the suffix name. I guess this method can only be used on the Windows platform. I wonder what will happen if it is executed on Linux?
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn