*停權中*
|
補充 trouk 的回應一下,
其實以下這段才是對的:
代碼:
// Cover Image Path
$puts(coverPath,cover.jpg)
對應到的是我在SCPL裡面寫的
代碼:
$replace(%path%,%filename_ext%,$get(coverPath))
上面這段的意思是,
把歌曲 "路徑"的 "檔案名稱包含副檔名"取代成 "coverPath這個變數",
而 "coverPath這個變數"引出來的就是 cover.jpg
例如:
歌曲 "路徑" = C:\AAAA\BBBB.mp3
"檔案名稱包含副檔名" = BBBB.mp3
取代後變成 C:\AAAA\cover.jpg
也正是我定義的cover.jpg的位置。
|