File.SetName (gb)
Static Function SetName ( Path As String, NewName As String ) As String
设置路径的文件全名,并返回修改后的路径。
Examples
DIM filePath AS String
PRINT "* 一个标准路径"
filePath = "/my/path/file.ext"
PRINT filePath
PRINT File.SetName(filePath, "new-name.new")
PRINT "\\n* 无扩展名的新名字"
filePath = "/my/path/file.ext"
PRINT filePath
PRINT File.SetName(filePath, "new-name")
PRINT "\\n* 无文件名的路径"
PRINT "* 可能最终获得一个无效路径"
filePath = "/my/path/"
PRINT filePath
PRINT File.SetName(filePath, "new-name.new")
PRINT "\\n* 仅有文件名的路径"
filePath = "file.ext"
PRINT filePath
PRINT File.SetName(filePath, "new-name.new")
* 一个标准路径
/my/path/file.ext
/my/path/new-name.new
* 无扩展名的新名字
/my/path/file.ext
/my/path/new-name
* 无文件名的路径
* 可能最终获得一个无效路径
/my/path/
/my/new-name.new
* 仅有文件名的路径
file.ext
new-name.new