摘要:
--[[ for window path this function return 1. file path 2. file name with extension 3. file name no extension 4. file extension--]] local function getFilePathAndName( file ) local fn_flag = string.find(file, "\\") if fn_flag then local filepath = string.match(file, "(.+... 阅读全文