Working_directory & "\scripts"
Is it possible to do this?
Printable View
Working_directory & "\scripts"
Is it possible to do this?
Of course it is, you just did it!!! :D
However, if in your ambiguity you mean is it possible to do this:
VB Code:
Dim Working_directory As String = FileSystem.CurDir 'OR Dim Working_directory As String = My.Computer.FileSystem.CurrentDirectory.ToString ' This one is better as it gives you better productivity and performance in File I/O than CurDir Dim scriptspath As String = Working_directory & "\scripts"
LNP
What do you mean by "working_directory"?
Hi, a Workng directory is where the .exe is so it will be that forder that you will want to store scripts.
Ohh, lol, Thanks :D