Try:
Code:
Sub Demo()
Dim StrOldPath As String, StrNewPath As String, strFile
StrOldPath = ActiveDocument.Path
StrNewPath = Left(StrOldPath, InStrRev(StrOldPath, "\"))
StrOldPath = StrOldPath & "\"
StrNewPath = StrNewPath & "translation to\"
If Dir(StrNewPath, vbDirectory) = "" Then
MkDir StrNewPath
End If
strFile = Dir(StrOldPath & "*.PDF", vbNormal)
While strFile <> ""
FileCopy StrOldPath & strFile, StrNewPath & strFile
Kill StrOldPath & strFile
strFile = Dir()
Wend
End Sub
To merely copy the files, delete 'Kill StrOldPath & strFile'.