+ Reply to Thread
Results 1 to 9 of 9

Save to directory and create if not exist

  1. #1
    Rob
    Guest

    Save to directory and create if not exist

    Hi,

    Does anyone have some sample code to help me achieve the following: copy a
    sheet to a new workbook with contents as values as opposed to formula, then
    save the new workbook in a directory (e.g. C:\my documents\) but if the
    directory doesn't exist, create the directory and then save the file. I
    would like to do this in one routine if possible.

    Thanks, Rob



  2. #2
    Ron de Bruin
    Guest

    Re: Save to directory and create if not exist

    Hi Rob

    Untested

    Sub Test()
    Dim dirstr As String
    Dim wb As Workbook

    ActiveSheet.Copy
    Set wb = ActiveWorkbook
    With wb.Sheets(1).UsedRange
    .Value = .Value
    End With

    dirstr = "C:\my documents"
    If Not DirectoryExist(dirstr) Then
    MkDir dirstr
    wb.SaveAs dirstr & "\ron.xls"
    Else
    wb.SaveAs dirstr & "\ron.xls"
    End If
    End Sub


    --
    Regards Ron de Bruin
    http://www.rondebruin.nl



    "Rob" <[email protected]> wrote in message news:[email protected]...
    > Hi,
    >
    > Does anyone have some sample code to help me achieve the following: copy a sheet to a new workbook with contents as values as
    > opposed to formula, then save the new workbook in a directory (e.g. C:\my documents\) but if the directory doesn't exist, create
    > the directory and then save the file. I would like to do this in one routine if possible.
    >
    > Thanks, Rob
    >




  3. #3
    Ron de Bruin
    Guest

    Re: Save to directory and create if not exist

    Wake up ron

    Here is the function that you need also

    Function DirectoryExist(sstr As String)
    'Tom Oglivy
    Dim lngAttr As Long
    DirectoryExist = False
    If Dir(sstr, vbDirectory) <> "" Then
    lngAttr = GetAttr(sstr)
    If lngAttr And vbDirectory Then _
    DirectoryExist = True
    End If
    End Function


    --
    Regards Ron de Bruin
    http://www.rondebruin.nl



    "Ron de Bruin" <[email protected]> wrote in message news:[email protected]...
    > Hi Rob
    >
    > Untested
    >
    > Sub Test()
    > Dim dirstr As String
    > Dim wb As Workbook
    >
    > ActiveSheet.Copy
    > Set wb = ActiveWorkbook
    > With wb.Sheets(1).UsedRange
    > .Value = .Value
    > End With
    >
    > dirstr = "C:\my documents"
    > If Not DirectoryExist(dirstr) Then
    > MkDir dirstr
    > wb.SaveAs dirstr & "\ron.xls"
    > Else
    > wb.SaveAs dirstr & "\ron.xls"
    > End If
    > End Sub
    >
    >
    > --
    > Regards Ron de Bruin
    > http://www.rondebruin.nl
    >
    >
    >
    > "Rob" <[email protected]> wrote in message news:[email protected]...
    >> Hi,
    >>
    >> Does anyone have some sample code to help me achieve the following: copy a sheet to a new workbook with contents as values as
    >> opposed to formula, then save the new workbook in a directory (e.g. C:\my documents\) but if the directory doesn't exist, create
    >> the directory and then save the file. I would like to do this in one routine if possible.
    >>
    >> Thanks, Rob
    >>

    >
    >




  4. #4
    Rob
    Guest

    Re: Save to directory and create if not exist

    Ron,

    Thanks for this I was wondering why I couldn't find DirectoryExist in the
    help!
    Also, the following isn't working, MkDir dirstr Any ideas?

    Thanks, Rob

    "Ron de Bruin" <[email protected]> wrote in message
    news:[email protected]...
    > Wake up ron
    >
    > Here is the function that you need also
    >
    > Function DirectoryExist(sstr As String)
    > 'Tom Oglivy
    > Dim lngAttr As Long
    > DirectoryExist = False
    > If Dir(sstr, vbDirectory) <> "" Then
    > lngAttr = GetAttr(sstr)
    > If lngAttr And vbDirectory Then _
    > DirectoryExist = True
    > End If
    > End Function
    >
    >
    > --
    > Regards Ron de Bruin
    > http://www.rondebruin.nl
    >
    >
    >
    > "Ron de Bruin" <[email protected]> wrote in message
    > news:[email protected]...
    >> Hi Rob
    >>
    >> Untested
    >>
    >> Sub Test()
    >> Dim dirstr As String
    >> Dim wb As Workbook
    >>
    >> ActiveSheet.Copy
    >> Set wb = ActiveWorkbook
    >> With wb.Sheets(1).UsedRange
    >> .Value = .Value
    >> End With
    >>
    >> dirstr = "C:\my documents"
    >> If Not DirectoryExist(dirstr) Then
    >> MkDir dirstr
    >> wb.SaveAs dirstr & "\ron.xls"
    >> Else
    >> wb.SaveAs dirstr & "\ron.xls"
    >> End If
    >> End Sub
    >>
    >>
    >> --
    >> Regards Ron de Bruin
    >> http://www.rondebruin.nl
    >>
    >>
    >>
    >> "Rob" <[email protected]> wrote in message
    >> news:[email protected]...
    >>> Hi,
    >>>
    >>> Does anyone have some sample code to help me achieve the following:
    >>> copy a sheet to a new workbook with contents as values as opposed to
    >>> formula, then save the new workbook in a directory (e.g. C:\my
    >>> documents\) but if the directory doesn't exist, create the directory and
    >>> then save the file. I would like to do this in one routine if possible.
    >>>
    >>> Thanks, Rob
    >>>

    >>
    >>

    >
    >




  5. #5
    Ron de Bruin
    Guest

    Re: Save to directory and create if not exist

    Hi Rob

    I test it now and it is working for me
    But you can't use

    dirstr = "C:\ron\excel"

    If ron not exist


    --
    Regards Ron de Bruin
    http://www.rondebruin.nl



    "Rob" <[email protected]> wrote in message news:[email protected]...
    > Ron,
    >
    > Thanks for this I was wondering why I couldn't find DirectoryExist in the help!
    > Also, the following isn't working, MkDir dirstr Any ideas?
    >
    > Thanks, Rob
    >
    > "Ron de Bruin" <[email protected]> wrote in message news:[email protected]...
    >> Wake up ron
    >>
    >> Here is the function that you need also
    >>
    >> Function DirectoryExist(sstr As String)
    >> 'Tom Oglivy
    >> Dim lngAttr As Long
    >> DirectoryExist = False
    >> If Dir(sstr, vbDirectory) <> "" Then
    >> lngAttr = GetAttr(sstr)
    >> If lngAttr And vbDirectory Then _
    >> DirectoryExist = True
    >> End If
    >> End Function
    >>
    >>
    >> --
    >> Regards Ron de Bruin
    >> http://www.rondebruin.nl
    >>
    >>
    >>
    >> "Ron de Bruin" <[email protected]> wrote in message news:[email protected]...
    >>> Hi Rob
    >>>
    >>> Untested
    >>>
    >>> Sub Test()
    >>> Dim dirstr As String
    >>> Dim wb As Workbook
    >>>
    >>> ActiveSheet.Copy
    >>> Set wb = ActiveWorkbook
    >>> With wb.Sheets(1).UsedRange
    >>> .Value = .Value
    >>> End With
    >>>
    >>> dirstr = "C:\my documents"
    >>> If Not DirectoryExist(dirstr) Then
    >>> MkDir dirstr
    >>> wb.SaveAs dirstr & "\ron.xls"
    >>> Else
    >>> wb.SaveAs dirstr & "\ron.xls"
    >>> End If
    >>> End Sub
    >>>
    >>>
    >>> --
    >>> Regards Ron de Bruin
    >>> http://www.rondebruin.nl
    >>>
    >>>
    >>>
    >>> "Rob" <[email protected]> wrote in message news:[email protected]...
    >>>> Hi,
    >>>>
    >>>> Does anyone have some sample code to help me achieve the following: copy a sheet to a new workbook with contents as values as
    >>>> opposed to formula, then save the new workbook in a directory (e.g. C:\my documents\) but if the directory doesn't exist,
    >>>> create the directory and then save the file. I would like to do this in one routine if possible.
    >>>>
    >>>> Thanks, Rob
    >>>>
    >>>
    >>>

    >>
    >>

    >
    >




  6. #6
    Bob Phillips
    Guest

    Re: Save to directory and create if not exist

    Why not just use

    Sub Test()
    Dim dirstr As String
    Dim wb As Workbook

    ActiveSheet.Copy
    Set wb = ActiveWorkbook
    With wb.Sheets(1).UsedRange
    .Value = .Value
    End With

    dirstr = "C:\my documents"
    On Error Resume Next
    MkDir dirstr
    On Error GoTo 0
    wb.SaveAs dirstr & "\ron1.xls"
    End Sub

    Does away with that DirectortyExist function


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "Rob" <[email protected]> wrote in message
    news:[email protected]...
    > Ron,
    >
    > Thanks for this I was wondering why I couldn't find DirectoryExist in the
    > help!
    > Also, the following isn't working, MkDir dirstr Any ideas?
    >
    > Thanks, Rob
    >
    > "Ron de Bruin" <[email protected]> wrote in message
    > news:[email protected]...
    > > Wake up ron
    > >
    > > Here is the function that you need also
    > >
    > > Function DirectoryExist(sstr As String)
    > > 'Tom Oglivy
    > > Dim lngAttr As Long
    > > DirectoryExist = False
    > > If Dir(sstr, vbDirectory) <> "" Then
    > > lngAttr = GetAttr(sstr)
    > > If lngAttr And vbDirectory Then _
    > > DirectoryExist = True
    > > End If
    > > End Function
    > >
    > >
    > > --
    > > Regards Ron de Bruin
    > > http://www.rondebruin.nl
    > >
    > >
    > >
    > > "Ron de Bruin" <[email protected]> wrote in message
    > > news:[email protected]...
    > >> Hi Rob
    > >>
    > >> Untested
    > >>
    > >> Sub Test()
    > >> Dim dirstr As String
    > >> Dim wb As Workbook
    > >>
    > >> ActiveSheet.Copy
    > >> Set wb = ActiveWorkbook
    > >> With wb.Sheets(1).UsedRange
    > >> .Value = .Value
    > >> End With
    > >>
    > >> dirstr = "C:\my documents"
    > >> If Not DirectoryExist(dirstr) Then
    > >> MkDir dirstr
    > >> wb.SaveAs dirstr & "\ron.xls"
    > >> Else
    > >> wb.SaveAs dirstr & "\ron.xls"
    > >> End If
    > >> End Sub
    > >>
    > >>
    > >> --
    > >> Regards Ron de Bruin
    > >> http://www.rondebruin.nl
    > >>
    > >>
    > >>
    > >> "Rob" <[email protected]> wrote in message
    > >> news:[email protected]...
    > >>> Hi,
    > >>>
    > >>> Does anyone have some sample code to help me achieve the following:
    > >>> copy a sheet to a new workbook with contents as values as opposed to
    > >>> formula, then save the new workbook in a directory (e.g. C:\my
    > >>> documents\) but if the directory doesn't exist, create the directory

    and
    > >>> then save the file. I would like to do this in one routine if

    possible.
    > >>>
    > >>> Thanks, Rob
    > >>>
    > >>
    > >>

    > >
    > >

    >
    >




  7. #7
    Ron de Bruin
    Guest

    Re: Save to directory and create if not exist

    Hi Bob

    Many ways to Rome

    I like this one

    Sub MakeDirectory()
    Dim Dirname As String
    Dim fs As Object
    Set fs = CreateObject("Scripting.FileSystemObject")
    Dirname = "C:\MyDir"
    If Not fs.FolderExists(Dirname) Then
    fs.CreateFolder Dirname
    Else
    ' do nothing
    End If
    End Sub


    --
    Regards Ron de Bruin
    http://www.rondebruin.nl



    "Bob Phillips" <[email protected]> wrote in message news:[email protected]...
    > Why not just use
    >
    > Sub Test()
    > Dim dirstr As String
    > Dim wb As Workbook
    >
    > ActiveSheet.Copy
    > Set wb = ActiveWorkbook
    > With wb.Sheets(1).UsedRange
    > .Value = .Value
    > End With
    >
    > dirstr = "C:\my documents"
    > On Error Resume Next
    > MkDir dirstr
    > On Error GoTo 0
    > wb.SaveAs dirstr & "\ron1.xls"
    > End Sub
    >
    > Does away with that DirectortyExist function
    >
    >
    > --
    >
    > HTH
    >
    > RP
    > (remove nothere from the email address if mailing direct)
    >
    >
    > "Rob" <[email protected]> wrote in message
    > news:[email protected]...
    >> Ron,
    >>
    >> Thanks for this I was wondering why I couldn't find DirectoryExist in the
    >> help!
    >> Also, the following isn't working, MkDir dirstr Any ideas?
    >>
    >> Thanks, Rob
    >>
    >> "Ron de Bruin" <[email protected]> wrote in message
    >> news:[email protected]...
    >> > Wake up ron
    >> >
    >> > Here is the function that you need also
    >> >
    >> > Function DirectoryExist(sstr As String)
    >> > 'Tom Oglivy
    >> > Dim lngAttr As Long
    >> > DirectoryExist = False
    >> > If Dir(sstr, vbDirectory) <> "" Then
    >> > lngAttr = GetAttr(sstr)
    >> > If lngAttr And vbDirectory Then _
    >> > DirectoryExist = True
    >> > End If
    >> > End Function
    >> >
    >> >
    >> > --
    >> > Regards Ron de Bruin
    >> > http://www.rondebruin.nl
    >> >
    >> >
    >> >
    >> > "Ron de Bruin" <[email protected]> wrote in message
    >> > news:[email protected]...
    >> >> Hi Rob
    >> >>
    >> >> Untested
    >> >>
    >> >> Sub Test()
    >> >> Dim dirstr As String
    >> >> Dim wb As Workbook
    >> >>
    >> >> ActiveSheet.Copy
    >> >> Set wb = ActiveWorkbook
    >> >> With wb.Sheets(1).UsedRange
    >> >> .Value = .Value
    >> >> End With
    >> >>
    >> >> dirstr = "C:\my documents"
    >> >> If Not DirectoryExist(dirstr) Then
    >> >> MkDir dirstr
    >> >> wb.SaveAs dirstr & "\ron.xls"
    >> >> Else
    >> >> wb.SaveAs dirstr & "\ron.xls"
    >> >> End If
    >> >> End Sub
    >> >>
    >> >>
    >> >> --
    >> >> Regards Ron de Bruin
    >> >> http://www.rondebruin.nl
    >> >>
    >> >>
    >> >>
    >> >> "Rob" <[email protected]> wrote in message
    >> >> news:[email protected]...
    >> >>> Hi,
    >> >>>
    >> >>> Does anyone have some sample code to help me achieve the following:
    >> >>> copy a sheet to a new workbook with contents as values as opposed to
    >> >>> formula, then save the new workbook in a directory (e.g. C:\my
    >> >>> documents\) but if the directory doesn't exist, create the directory

    > and
    >> >>> then save the file. I would like to do this in one routine if

    > possible.
    >> >>>
    >> >>> Thanks, Rob
    >> >>>
    >> >>
    >> >>
    >> >
    >> >

    >>
    >>

    >
    >




  8. #8
    Rob
    Guest

    Re: Save to directory and create if not exist

    Thanks Ron and Bob, both have given options that work. It'll be awhile
    before I understand which is the preferred option!

    Rob
    "Ron de Bruin" <[email protected]> wrote in message
    news:uEcEA%[email protected]...
    > Hi Bob
    >
    > Many ways to Rome
    >
    > I like this one
    >
    > Sub MakeDirectory()
    > Dim Dirname As String
    > Dim fs As Object
    > Set fs = CreateObject("Scripting.FileSystemObject")
    > Dirname = "C:\MyDir"
    > If Not fs.FolderExists(Dirname) Then
    > fs.CreateFolder Dirname
    > Else
    > ' do nothing
    > End If
    > End Sub
    >
    >
    > --
    > Regards Ron de Bruin
    > http://www.rondebruin.nl
    >
    >
    >
    > "Bob Phillips" <[email protected]> wrote in message
    > news:[email protected]...
    >> Why not just use
    >>
    >> Sub Test()
    >> Dim dirstr As String
    >> Dim wb As Workbook
    >>
    >> ActiveSheet.Copy
    >> Set wb = ActiveWorkbook
    >> With wb.Sheets(1).UsedRange
    >> .Value = .Value
    >> End With
    >>
    >> dirstr = "C:\my documents"
    >> On Error Resume Next
    >> MkDir dirstr
    >> On Error GoTo 0
    >> wb.SaveAs dirstr & "\ron1.xls"
    >> End Sub
    >>
    >> Does away with that DirectortyExist function
    >>
    >>
    >> --
    >>
    >> HTH
    >>
    >> RP
    >> (remove nothere from the email address if mailing direct)
    >>
    >>
    >> "Rob" <[email protected]> wrote in message
    >> news:[email protected]...
    >>> Ron,
    >>>
    >>> Thanks for this I was wondering why I couldn't find DirectoryExist in
    >>> the
    >>> help!
    >>> Also, the following isn't working, MkDir dirstr Any ideas?
    >>>
    >>> Thanks, Rob
    >>>
    >>> "Ron de Bruin" <[email protected]> wrote in message
    >>> news:[email protected]...
    >>> > Wake up ron
    >>> >
    >>> > Here is the function that you need also
    >>> >
    >>> > Function DirectoryExist(sstr As String)
    >>> > 'Tom Oglivy
    >>> > Dim lngAttr As Long
    >>> > DirectoryExist = False
    >>> > If Dir(sstr, vbDirectory) <> "" Then
    >>> > lngAttr = GetAttr(sstr)
    >>> > If lngAttr And vbDirectory Then _
    >>> > DirectoryExist = True
    >>> > End If
    >>> > End Function
    >>> >
    >>> >
    >>> > --
    >>> > Regards Ron de Bruin
    >>> > http://www.rondebruin.nl
    >>> >
    >>> >
    >>> >
    >>> > "Ron de Bruin" <[email protected]> wrote in message
    >>> > news:[email protected]...
    >>> >> Hi Rob
    >>> >>
    >>> >> Untested
    >>> >>
    >>> >> Sub Test()
    >>> >> Dim dirstr As String
    >>> >> Dim wb As Workbook
    >>> >>
    >>> >> ActiveSheet.Copy
    >>> >> Set wb = ActiveWorkbook
    >>> >> With wb.Sheets(1).UsedRange
    >>> >> .Value = .Value
    >>> >> End With
    >>> >>
    >>> >> dirstr = "C:\my documents"
    >>> >> If Not DirectoryExist(dirstr) Then
    >>> >> MkDir dirstr
    >>> >> wb.SaveAs dirstr & "\ron.xls"
    >>> >> Else
    >>> >> wb.SaveAs dirstr & "\ron.xls"
    >>> >> End If
    >>> >> End Sub
    >>> >>
    >>> >>
    >>> >> --
    >>> >> Regards Ron de Bruin
    >>> >> http://www.rondebruin.nl
    >>> >>
    >>> >>
    >>> >>
    >>> >> "Rob" <[email protected]> wrote in message
    >>> >> news:[email protected]...
    >>> >>> Hi,
    >>> >>>
    >>> >>> Does anyone have some sample code to help me achieve the following:
    >>> >>> copy a sheet to a new workbook with contents as values as opposed to
    >>> >>> formula, then save the new workbook in a directory (e.g. C:\my
    >>> >>> documents\) but if the directory doesn't exist, create the directory

    >> and
    >>> >>> then save the file. I would like to do this in one routine if

    >> possible.
    >>> >>>
    >>> >>> Thanks, Rob
    >>> >>>
    >>> >>
    >>> >>
    >>> >
    >>> >
    >>>
    >>>

    >>
    >>

    >
    >




  9. #9
    Bob Phillips
    Guest

    Re: Save to directory and create if not exist

    Probably not a preferred option, other than personal preference. FWIW, my
    choice would not be to introduce FSO unless I had to, or unless the other
    code used some Excel specific function (which in this case it doesn't).

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "Rob" <[email protected]> wrote in message
    news:[email protected]...
    > Thanks Ron and Bob, both have given options that work. It'll be awhile
    > before I understand which is the preferred option!
    >
    > Rob
    > "Ron de Bruin" <[email protected]> wrote in message
    > news:uEcEA%[email protected]...
    > > Hi Bob
    > >
    > > Many ways to Rome
    > >
    > > I like this one
    > >
    > > Sub MakeDirectory()
    > > Dim Dirname As String
    > > Dim fs As Object
    > > Set fs = CreateObject("Scripting.FileSystemObject")
    > > Dirname = "C:\MyDir"
    > > If Not fs.FolderExists(Dirname) Then
    > > fs.CreateFolder Dirname
    > > Else
    > > ' do nothing
    > > End If
    > > End Sub
    > >
    > >
    > > --
    > > Regards Ron de Bruin
    > > http://www.rondebruin.nl
    > >
    > >
    > >
    > > "Bob Phillips" <[email protected]> wrote in message
    > > news:[email protected]...
    > >> Why not just use
    > >>
    > >> Sub Test()
    > >> Dim dirstr As String
    > >> Dim wb As Workbook
    > >>
    > >> ActiveSheet.Copy
    > >> Set wb = ActiveWorkbook
    > >> With wb.Sheets(1).UsedRange
    > >> .Value = .Value
    > >> End With
    > >>
    > >> dirstr = "C:\my documents"
    > >> On Error Resume Next
    > >> MkDir dirstr
    > >> On Error GoTo 0
    > >> wb.SaveAs dirstr & "\ron1.xls"
    > >> End Sub
    > >>
    > >> Does away with that DirectortyExist function
    > >>
    > >>
    > >> --
    > >>
    > >> HTH
    > >>
    > >> RP
    > >> (remove nothere from the email address if mailing direct)
    > >>
    > >>
    > >> "Rob" <[email protected]> wrote in message
    > >> news:[email protected]...
    > >>> Ron,
    > >>>
    > >>> Thanks for this I was wondering why I couldn't find DirectoryExist in
    > >>> the
    > >>> help!
    > >>> Also, the following isn't working, MkDir dirstr Any ideas?
    > >>>
    > >>> Thanks, Rob
    > >>>
    > >>> "Ron de Bruin" <[email protected]> wrote in message
    > >>> news:[email protected]...
    > >>> > Wake up ron
    > >>> >
    > >>> > Here is the function that you need also
    > >>> >
    > >>> > Function DirectoryExist(sstr As String)
    > >>> > 'Tom Oglivy
    > >>> > Dim lngAttr As Long
    > >>> > DirectoryExist = False
    > >>> > If Dir(sstr, vbDirectory) <> "" Then
    > >>> > lngAttr = GetAttr(sstr)
    > >>> > If lngAttr And vbDirectory Then _
    > >>> > DirectoryExist = True
    > >>> > End If
    > >>> > End Function
    > >>> >
    > >>> >
    > >>> > --
    > >>> > Regards Ron de Bruin
    > >>> > http://www.rondebruin.nl
    > >>> >
    > >>> >
    > >>> >
    > >>> > "Ron de Bruin" <[email protected]> wrote in message
    > >>> > news:[email protected]...
    > >>> >> Hi Rob
    > >>> >>
    > >>> >> Untested
    > >>> >>
    > >>> >> Sub Test()
    > >>> >> Dim dirstr As String
    > >>> >> Dim wb As Workbook
    > >>> >>
    > >>> >> ActiveSheet.Copy
    > >>> >> Set wb = ActiveWorkbook
    > >>> >> With wb.Sheets(1).UsedRange
    > >>> >> .Value = .Value
    > >>> >> End With
    > >>> >>
    > >>> >> dirstr = "C:\my documents"
    > >>> >> If Not DirectoryExist(dirstr) Then
    > >>> >> MkDir dirstr
    > >>> >> wb.SaveAs dirstr & "\ron.xls"
    > >>> >> Else
    > >>> >> wb.SaveAs dirstr & "\ron.xls"
    > >>> >> End If
    > >>> >> End Sub
    > >>> >>
    > >>> >>
    > >>> >> --
    > >>> >> Regards Ron de Bruin
    > >>> >> http://www.rondebruin.nl
    > >>> >>
    > >>> >>
    > >>> >>
    > >>> >> "Rob" <[email protected]> wrote in message
    > >>> >> news:[email protected]...
    > >>> >>> Hi,
    > >>> >>>
    > >>> >>> Does anyone have some sample code to help me achieve the

    following:
    > >>> >>> copy a sheet to a new workbook with contents as values as opposed

    to
    > >>> >>> formula, then save the new workbook in a directory (e.g. C:\my
    > >>> >>> documents\) but if the directory doesn't exist, create the

    directory
    > >> and
    > >>> >>> then save the file. I would like to do this in one routine if
    > >> possible.
    > >>> >>>
    > >>> >>> Thanks, Rob
    > >>> >>>
    > >>> >>
    > >>> >>
    > >>> >
    > >>> >
    > >>>
    > >>>
    > >>
    > >>

    > >
    > >

    >
    >




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1