Home > comp > gb > file > setdir 
 en fr de es it nl pl pt_BR mk sq ca hu cs tr ar fa id vi ko ja ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Search  Administration  
Documentation  
Warning! This page is not translated.  See english version 
File.SetDir (gb)
Static Function SetDir ( Path As String, NewDir As String ) As String

Sets the directory part of a path, and returns the modified path.

Example

DIM filePath AS String

PRINT "* A standard type of path"
filePath = "/my/path/file.ext"
PRINT filePath
PRINT File.SetDir(filePath, "/new/path")

PRINT "\\n* Set a relative path"
filePath = "my/path/file.ext"
PRINT filePath
PRINT File.SetDir(filePath, "new/path")

PRINT "\\n* Add a path to a file and extension"
filePath = "file.ext"
PRINT filePath
PRINT File.SetDir(filePath, "/new/path")

PRINT "\\n* Change a path without a file name and extension"
filePath = "my/path/"
PRINT filePath
PRINT File.SetDir(filePath, "new/path/")


* A standard type of path
/my/path/file.ext
/new/path/file.ext

* Set a relative path
my/path/file.ext
new/path/file.ext

* Add a path to a file and extension
file.ext
/new/path/file.ext

* Change a path without a file name and extension
my/path/
new/path/