File.SetName (gb)
Static Function SetName ( Path As String, NewName As String ) As String
Définit la partie nom de fichier d'un chemin, et retourne le chemin modifié.
Exemples
DIM filePath AS String
PRINT "* Un type standard de chemin "
filePath = "/my/path/file.ext"
PRINT filePath
PRINT File.SetName(filePath, "new-name.new")
PRINT "\\n* Pas d'extension dans le nouveau nom "
filePath = "/my/path/file.ext"
PRINT filePath
PRINT File.SetName(filePath, "new-name")
PRINT "\\n* Un chemin sans nom de fichier "
PRINT "* Vous pourriez aboutir à un chemin invalide"
filePath = "/my/path/"
PRINT filePath
PRINT File.SetName(filePath, "new-name.new")
PRINT "\\n* Un chemin avec juste un nom de fichier "
filePath = "file.ext"
PRINT filePath
PRINT File.SetName(filePath, "new-name.new")
* Un type standard de chemin
/my/path/file.ext
/my/path/new-name.new
* Pas d'extension dans le nouveau nom
/my/path/file.ext
/my/path/new-name
* Un chemin sans nom de fichier
* Vous pourriez aboutir à un chemin invalide
/my/path/
/my/new-name.new
* Un chemin avec juste un nom de fichier
file.ext
new-name.new