I would like to have a button on a page that will create a folder within a directory on our server for a job database.
The structure is as follows:
Company Work Drive - Company Folder on Network Drive (there are three companies that use the same server)
Clients folder - Name of folder where clients are stored
Client Company folder - a Folder for each company
Job Folder - Where documents are stored. Created from Job ID & Job name fields
In windows the structure would be serverCompany Work DriveClients FolderClient Company FolderJob Folder
(serverDataClientsACustomerJob#12)
I would like the script to check to see if Client Company folder exists, and if not create it based on the value of that field.
I would then it to check to see if the Job folder exists, otherwise I would like it to create the Job Folder within the Client Company Folder.
Finally I want it to open the folder. Hopefully that makes it clearer. I have seen this done in an access database using vb script, but don't know how to run vb script in FM. Below is the vb script. The field names are slightly different, but hopefully it is clear.
VB Script
Private Sub Create_Directory_Click()
'On Error GoTo Err_Create_Directory_Click
Dim strclientpath As String
Dim strjobpath As String
strclientpath = Me![DocLocation] & "" & Me![Company] & ""
strjobpath = Me![DocLocation] & "" & Me![Company] & "" & Me![OurCompanyInitials] & " #" & Me![JobID] & " - " & Me![Job Description] & ""
If Dir(strclientpath, vbDirectory) > vbNullString And Dir(strjobpath, vbDirectory) > vbNullString Then
Exit Sub
ElseIf Dir(strclientpath, vbDirectory) > vbNullString Then
MkDir strjobpath
Exit Sub
Else
MkDir strclientpath
MkDir strjobpath