對于Windows和MacOS的構(gòu)建目標,YoYoGames官方提供了一系列用于獲取文件路徑的函數(shù)。
10余年的天祝藏族自治網(wǎng)站建設經(jīng)驗,針對設計、前端、開發(fā)、售后、文案、推廣等六對一服務,響應快,48小時及時工作處理。成都全網(wǎng)營銷推廣的優(yōu)勢是能夠根據(jù)用戶設備顯示端的尺寸不同,自動調(diào)整天祝藏族自治建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設計,從而大程度地提升瀏覽體驗。創(chuàng)新互聯(lián)從事“天祝藏族自治網(wǎng)站設計”,“天祝藏族自治網(wǎng)站推廣”以來,每個客戶項目都認真落實執(zhí)行。但本文并不敘述如何獲取路徑,我們假設如果你已經(jīng)有了一串路徑。
theFilePath = "C:\Program Files\GameMaker\GameMaker.exe"
我們一般可以進行以下操作——
分離文件路徑與文件名function SplitPath(FilePath){
var Pos = string_last_pos("/",FilePath) //檢測最后一個/的位置
if(string_last_pos("\\",FilePath) >Pos){
Pos = string_last_pos("\\",FilePath) //檢測最后一個\的位置
}
return [string_copy(FilePath,1,Pos),string_copy(FilePath,Pos+1,string_length(FilePath))]
}
var theFilePath = "C:/Program Files/GameMaker/GameMaker.exe"
filepath = SplitPath(theFilePath)
// In: show_debug_message(filepath[0])
// Out: C:/Program Files/GameMaker/
// In: show_debug_message(filepath[1])
// Out: GameMaker.exe
其中filepath為所求數(shù)組,其中包含了兩個值:文件夾路徑,文件名。
分離文件名與后綴function SplitFileName(FileName){
var Pos = string_last_pos(".",FileName) //檢測最后一個.的位置
return [string_copy(FileName,1,Pos-1),string_copy(FileName,Pos,string_length(FileName))]
}
var theFileName = "GameMaker.exe"
filenamed = SplitFileName(theFileName)
// In: show_debug_message(filenamed[0])
// Out: GameMaker
// In: show_debug_message(filenamed[1])
// Out: .exe
其中filenamed為所求數(shù)組,其中包含了兩個值:文件名,后綴名。
你是否還在尋找穩(wěn)定的海外服務器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機房具備T級流量清洗系統(tǒng)配攻擊溯源,準確流量調(diào)度確保服務器高可用性,企業(yè)級服務器適合批量采購,新人活動首月15元起,快前往官網(wǎng)查看詳情吧